From 0d3bfaf12dd38c9690e38bb1a43b9988dad714ae Mon Sep 17 00:00:00 2001 From: Sven Balzer <4653051+Kyuusokuna@users.noreply.github.com> Date: Mon, 29 Sep 2025 07:09:07 +0200 Subject: [PATCH] start at 50% volume for all channels to allow for more user control --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8ef00b7..cf7b8ea 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -64,9 +64,9 @@ static Sint32 window_height; static Mix_Music *music_setting_off_piano; -static float volume_master = 100.0f; -static float volume_music = 100.0f; -static float volume_sfx = 100.0f; +static float volume_master = 50.0f; +static float volume_music = 50.0f; +static float volume_sfx = 50.0f; static bool Running = true;