mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-01-25 09:14:43 +01:00
set back default volume to 50 - to investigate: it doesn't change anything
This commit is contained in:
parent
a1c265f207
commit
4f4a49dacd
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user