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:
parent
3bedad1e95
commit
66a854d75b
|
@ -23,7 +23,9 @@ namespace BizHawk.MultiClient
|
||||||
string details = Global.Emulator.CoreOutputComm.RomStatusDetails;
|
string details = Global.Emulator.CoreOutputComm.RomStatusDetails;
|
||||||
if(string.IsNullOrEmpty(details)) return;
|
if(string.IsNullOrEmpty(details)) return;
|
||||||
var lw = new LogWindow();
|
var lw = new LogWindow();
|
||||||
|
Global.Sound.StopSound();
|
||||||
lw.ShowReport("Dump Status Report",details);
|
lw.ShowReport("Dump Status Report",details);
|
||||||
|
Global.Sound.StartSound();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RAMPokeToolStripMenuItem_Click(object sender, EventArgs e)
|
private void RAMPokeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue