summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound.cpp')
-rw-r--r--src/emu/sound.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/emu/sound.cpp b/src/emu/sound.cpp
index 1fb401f0ef1..6862845e8da 100644
--- a/src/emu/sound.cpp
+++ b/src/emu/sound.cpp
@@ -1093,14 +1093,6 @@ sound_manager::sound_manager(running_machine &machine) :
m_wavfile(),
m_first_reset(true)
{
- // get filename for WAV file or AVI file if specified
- const char *wavfile = machine.options().wav_write();
- const char *avifile = machine.options().avi_write();
-
- // handle -nosound and lower sample rate if not recording WAV or AVI
- if (m_nosound_mode && wavfile[0] == 0 && avifile[0] == 0)
- machine.m_sample_rate = 11025;
-
// count the mixers
#if VERBOSE
mixer_interface_enumerator iter(machine.root_device());