This commit is contained in:
andres.delikat 2011-01-11 04:21:12 +00:00
parent 458d642b20
commit 45b9891396
1 changed files with 2 additions and 2 deletions

View File

@ -400,13 +400,13 @@ namespace BizHawk.MultiClient
{ {
if (EmulatorPaused == true) if (EmulatorPaused == true)
{ {
Global.Sound.StartSound; Global.Sound.StartSound();
EmulatorPaused = false; EmulatorPaused = false;
pauseToolStripMenuItem.Checked = false; pauseToolStripMenuItem.Checked = false;
} }
else else
{ {
Global.Sound.StopSound; Global.Sound.StopSound();
EmulatorPaused = true; EmulatorPaused = true;
pauseToolStripMenuItem.Checked = true; pauseToolStripMenuItem.Checked = true;
} }