Fix Ram Watch on screen display I broke some commits back

This commit is contained in:
adelikat 2014-05-04 14:22:11 +00:00
parent 0b6795fffc
commit c432fab579
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ namespace BizHawk.Client.EmuHawk
public void UpdateAfter() public void UpdateAfter()
{ {
var afterList = _tools.Where(x => !x.UpdateBefore); var afterList = _tools.Where(x => !x.UpdateBefore);
foreach (var tool in afterList.Where(tool => !tool.IsDisposed)) foreach (var tool in afterList)
{ {
if (!tool.IsDisposed || if (!tool.IsDisposed ||
(tool is RamWatch && Global.Config.DisplayRamWatch)) // Ram Watch hack, on screen display should run even if Ram Watch is closed (tool is RamWatch && Global.Config.DisplayRamWatch)) // Ram Watch hack, on screen display should run even if Ram Watch is closed