From 2f252375487c0340cd4cb5e5779725ed5bcfb920 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 24 Sep 2011 20:38:48 +0000 Subject: [PATCH] nes-fix rom status icon --- BizHawk.MultiClient/MainForm.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 57bd8fe190..06c17da848 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1056,7 +1056,6 @@ namespace BizHawk.MultiClient nes.FirstDrawLine = Global.Config.NESTopLine; nes.LastDrawLine = Global.Config.NESBottomLine; nes.SetClipLeftAndRight(Global.Config.NESClipLeftAndRight); - Global.Game.Status = nes.RomStatus; nextEmulator = nes; if (Global.Config.NESAutoLoadPalette && Global.Config.NESPaletteFile.Length > 0 && HawkFile.ExistsAt(Global.Config.NESPaletteFile)) @@ -1093,7 +1092,9 @@ namespace BizHawk.MultiClient if (game.System == "NES") { - Global.Game.Name = (Global.Emulator as NES).GameName; + NES nes = Global.Emulator as NES; + Global.Game.Name = nes.GameName; + Global.Game.Status = nes.RomStatus; } Text = DisplayNameForSystem(game.System) + " - " + game.Name;