mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-01-19 22:34:52 +01:00
set default volume config to 99
This commit is contained in:
parent
d0fcc6f0bd
commit
5ccca89936
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user