summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/mame.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c
index 6954a4a0f8e..2699b0de3c4 100644
--- a/src/emu/mame.c
+++ b/src/emu/mame.c
@@ -335,6 +335,7 @@ int mame_execute(core_options *options)
/* load the configuration settings and NVRAM */
settingsloaded = config_load_settings(machine);
nvram_load(machine);
+ sound_mute(FALSE);
/* display the startup screens */
ui_display_startup_screens(machine, firstrun, !settingsloaded);
@@ -376,6 +377,7 @@ int mame_execute(core_options *options)
end_resource_tracking();
/* save the NVRAM and configuration */
+ sound_mute(TRUE);
nvram_save(machine);
config_save_settings(machine);
}