From 45b9891396dc5250b6b9a38fc5bf8c4035a2bec4 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Tue, 11 Jan 2011 04:21:12 +0000 Subject: [PATCH] oops --- BizHawk.MultiClient/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index ef9f4a8d78..c55c906f04 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -400,13 +400,13 @@ namespace BizHawk.MultiClient { if (EmulatorPaused == true) { - Global.Sound.StartSound; + Global.Sound.StartSound(); EmulatorPaused = false; pauseToolStripMenuItem.Checked = false; } else { - Global.Sound.StopSound; + Global.Sound.StopSound(); EmulatorPaused = true; pauseToolStripMenuItem.Checked = true; }