diff options
Diffstat (limited to 'src/mame/machine/sms.cpp')
-rw-r--r-- | src/mame/machine/sms.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/sms.cpp b/src/mame/machine/sms.cpp index d4d4e09ab17..cffcbbc3c5d 100644 --- a/src/mame/machine/sms.cpp +++ b/src/mame/machine/sms.cpp @@ -460,10 +460,10 @@ WRITE8_MEMBER(sms_state::smsj_audio_control_w) m_smsj_audio_control = data & 0x03; /* Mute settings: - 0,0 : PSG only (power-on default) - 0,1 : FM only - 1,0 : Both PSG and FM disabled - 1,1 : Both PSG and FM enabled + 0,0 : PSG only (power-on default) + 0,1 : FM only + 1,0 : Both PSG and FM disabled + 1,1 : Both PSG and FM enabled */ if (m_smsj_audio_control == 0x00 || m_smsj_audio_control == 0x03) m_psg_sms->set_output_gain(ALL_OUTPUTS, 1.0); |