From 5ccca8993633ae918c2b8b907dc16dbb902e16fa Mon Sep 17 00:00:00 2001 From: Vincent-FK Date: Mon, 12 Apr 2021 18:19:29 +0200 Subject: [PATCH] set default volume config to 99 --- platform/common/emu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/common/emu.c b/platform/common/emu.c index 04ef00f7..c67c2400 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -681,7 +681,7 @@ void emu_prep_defconfig(void) defaultConfig.Frameskip = -1; // auto defaultConfig.input_dev0 = PICO_INPUT_PAD_3BTN; defaultConfig.input_dev1 = PICO_INPUT_PAD_3BTN; - defaultConfig.volume = 50; + defaultConfig.volume = 99; defaultConfig.gamma = 100; defaultConfig.scaling = 0; defaultConfig.turbo_rate = 15; @@ -750,7 +750,7 @@ int emu_read_config(const char *rom_fname, int no_defaults) // some sanity checks if (currentConfig.volume < 0 || currentConfig.volume > 99) - currentConfig.volume = 50; + currentConfig.volume = 99; if (ret == 0) config_slot_current = config_slot;