From c4c05740a78dfd655a7557e1aa1c21702076c909 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 17 Feb 2014 09:20:08 +0000 Subject: [PATCH] fix slow performance in window mode on some cores due to constant churning of bitmaps for the disk activity light --- BizHawk.Client.EmuHawk/MainForm.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index e60621df5b..1711c1d393 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -28,13 +28,16 @@ namespace BizHawk.Client.EmuHawk { Text = "BizHawk" + (VersionInfo.INTERIM ? " (interim) " : String.Empty); - // Hide Status bar icons + Global.CheatList.Changed += ToolHelpers.UpdateCheatRelatedTools; + + // Hide Status bar icons and general statusbar prep PlayRecordStatusButton.Visible = false; AVIStatusLabel.Visible = false; SetPauseStatusbarIcon(); ToolHelpers.UpdateCheatRelatedTools(null, null); RebootStatusBarIcon.Visible = false; - Global.CheatList.Changed += ToolHelpers.UpdateCheatRelatedTools; + StatusBarDiskLightOnImage = Properties.Resources.LightOn; + StatusBarDiskLightOffImage = Properties.Resources.LightOff; } static MainForm() @@ -992,10 +995,8 @@ namespace BizHawk.Client.EmuHawk private readonly bool _autoCloseOnDump; private int _lastOpenRomFilter; - //TODO GL - this whole feature will have to be re-added - //// workaround for possible memory leak in SysdrawingRenderPanel - //private RetainedViewportPanel _captureOsdRvp; - //private SysdrawingRenderPanel _captureOsdSrp; + // Resources + Bitmap StatusBarDiskLightOnImage, StatusBarDiskLightOffImage; private object _syncSettingsHack; @@ -2065,8 +2066,8 @@ namespace BizHawk.Client.EmuHawk } LedLightStatusLabel.Image = Global.Emulator.CoreComm.DriveLED - ? Properties.Resources.LightOn - : Properties.Resources.LightOff; + ? StatusBarDiskLightOnImage + : StatusBarDiskLightOffImage; } else {