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

This commit is contained in:
andres.delikat 2011-07-21 22:51:32 +00:00
parent 3bedad1e95
commit 66a854d75b
1 changed files with 2 additions and 0 deletions

View File

@ -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)