From 60829be5932ddf6afe93b26dacdab8e9cea261a4 Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 11 Apr 2020 00:27:31 +0300 Subject: [PATCH] mame: prevent dumping nvram to disk --- BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs b/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs index aa9621c24f..459dc98e62 100644 --- a/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs +++ b/BizHawk.Emulation.Cores/Arcades/MAME/MAME.cs @@ -505,9 +505,10 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME , "-nothrottle" // forbid throttling to "real" speed of the device , "-update_in_pause" // ^ including frame-advancing , "-rompath", _gameDirectory // mame doesn't load roms from full paths, only from dirs to scan - , "-artpath", "mame\\artwork" - , "-cfg_directory", "mame\\cfg" - , "-nvram_directory", "mame\\nvram" + , "-joystick_contradictory" // L+R/U+D on digital joystick + , "-nonvram_save" // prevent dumping non-volatile ram to disk + , "-cfg_directory", "mame\\cfg" // TODO: send PR for -noconfig_save + , "-artpath", "mame\\artwork" // path to load artowrk from , "-diff_directory", "mame\\diff" , "-volume", "-32" // lowest attenuation means mame osd remains silent , "-output", "console" // print everything to hawk console