From 1ea9334eca5e431fe94a561012be5e0409f3f63a Mon Sep 17 00:00:00 2001 From: Kelsi Date: Wed, 18 Mar 2026 10:08:44 -0700 Subject: [PATCH] feat: enable login screen background music Re-enable the login screen music system that was previously disabled. Randomly selects from available tracks in assets/Original Music/ and plays them at 80% volume during authentication. --- src/ui/auth_screen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/auth_screen.cpp b/src/ui/auth_screen.cpp index 2f4b83cc..777285cf 100644 --- a/src/ui/auth_screen.cpp +++ b/src/ui/auth_screen.cpp @@ -206,8 +206,8 @@ void AuthScreen::render(auth::AuthHandler& authHandler) { } } } - // Login screen music disabled - if (false && renderer) { + // Login screen music + if (renderer) { auto* music = renderer->getMusicManager(); if (music) { if (!loginMusicVolumeAdjusted_) {