mirror of https://github.com/snes9xgit/snes9x.git
Fixed sound playing while in turbo after pause
(this may break other aspects of audio around pausing)
This commit is contained in:
parent
4f3e6681ef
commit
9e91d9d8ae
|
@ -273,7 +273,6 @@ static gboolean S9xPauseFunc (gpointer data)
|
||||||
/* Clear joystick queues */
|
/* Clear joystick queues */
|
||||||
gui_config->flush_joysticks ();
|
gui_config->flush_joysticks ();
|
||||||
|
|
||||||
S9xSetSoundMute (false);
|
|
||||||
S9xSoundStart ();
|
S9xSoundStart ();
|
||||||
|
|
||||||
if (Settings.NetPlay && NetPlay.Connected)
|
if (Settings.NetPlay && NetPlay.Connected)
|
||||||
|
@ -314,7 +313,6 @@ gboolean S9xIdleFunc (gpointer data)
|
||||||
{
|
{
|
||||||
if (Settings.Paused && gui_config->rom_loaded)
|
if (Settings.Paused && gui_config->rom_loaded)
|
||||||
{
|
{
|
||||||
S9xSetSoundMute (gui_config->mute_sound);
|
|
||||||
S9xSoundStop ();
|
S9xSoundStop ();
|
||||||
|
|
||||||
gui_config->flush_joysticks ();
|
gui_config->flush_joysticks ();
|
||||||
|
|
Loading…
Reference in New Issue