From 4f4a49dacd12f867df9d79d06c4b9f89f5bb5441 Mon Sep 17 00:00:00 2001 From: Vincent-FK Date: Fri, 30 Apr 2021 19:33:57 +0200 Subject: [PATCH] set back default volume to 50 - to investigate: it doesn't change anything --- platform/common/emu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/common/emu.c b/platform/common/emu.c index 39097f4c..496087cf 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -685,7 +685,8 @@ 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 = 99; + defaultConfig.volume = 50; + //defaultConfig.volume = 99; defaultConfig.gamma = 100; defaultConfig.scaling = 0; defaultConfig.turbo_rate = 15; @@ -754,7 +755,7 @@ int emu_read_config(const char *rom_fname, int no_defaults) // some sanity checks if (currentConfig.volume < 0 || currentConfig.volume > 99) - currentConfig.volume = 99; + currentConfig.volume = 50; if (ret == 0) config_slot_current = config_slot;