From 632807af45ffb98b2045008648c69b4f6c8b73bf Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sun, 26 Nov 2023 22:19:46 -0500 Subject: [PATCH] Set default master volume to 80 --- src/pc/configfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 141cc36c..2caf97fe 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -69,7 +69,7 @@ ConfigWindow configWindow = { .msaa = 0, }; unsigned int configFiltering = 1; // 0=force nearest, 1=linear, 2=three-point -unsigned int configMasterVolume = 30; // 0 - MAX_VOLUME +unsigned int configMasterVolume = 80; // 0 - MAX_VOLUME unsigned int configMusicVolume = MAX_VOLUME; unsigned int configSfxVolume = MAX_VOLUME; unsigned int configEnvVolume = MAX_VOLUME;