From 66a854d75b1b249ff94f37a38911e432d558458e Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Thu, 21 Jul 2011 22:51:32 +0000 Subject: [PATCH] Main Form - opening log window from status bar Rom icon - StopSound & StartSound() should always be run before and after modal dialog calls to avoid annoying stuttering while window is open --- BizHawk.MultiClient/MainForm.MenuItems.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.MultiClient/MainForm.MenuItems.cs b/BizHawk.MultiClient/MainForm.MenuItems.cs index 80b6ea440e..4e8a635ecc 100644 --- a/BizHawk.MultiClient/MainForm.MenuItems.cs +++ b/BizHawk.MultiClient/MainForm.MenuItems.cs @@ -23,7 +23,9 @@ namespace BizHawk.MultiClient string details = Global.Emulator.CoreOutputComm.RomStatusDetails; if(string.IsNullOrEmpty(details)) return; var lw = new LogWindow(); + Global.Sound.StopSound(); lw.ShowReport("Dump Status Report",details); + Global.Sound.StartSound(); } private void RAMPokeToolStripMenuItem_Click(object sender, EventArgs e)