From c9dab721fbcba24a9f7b21e86e5da611c616889b Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 7 Jul 2015 14:05:05 -0500 Subject: [PATCH] fix bug in GDIRenderer font cache that made fonts go wacky and get measured wrong and then TAStudio to layout differently each time --- BizHawk.Client.EmuHawk/CustomControls/GDIRenderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/GDIRenderer.cs b/BizHawk.Client.EmuHawk/CustomControls/GDIRenderer.cs index 5eb49c4523..252942b1cd 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/GDIRenderer.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/GDIRenderer.cs @@ -25,7 +25,7 @@ namespace BizHawk.Client.EmuHawk.CustomControls /// /// Cache of all the HFONTs used, rather than create them again and again /// - private static readonly Dictionary FontsCache = new Dictionary(); + private readonly Dictionary FontsCache = new Dictionary(); class FontCacheEntry { @@ -302,7 +302,7 @@ namespace BizHawk.Client.EmuHawk.CustomControls SelectObject(_hdc, GetCachedHFont(font)); } - private static IntPtr GetCachedHFont(Font font) + private IntPtr GetCachedHFont(Font font) { //the original code struck me as bad. attempting to ID fonts by picking a subset of their fields is not gonna work. //don't call this.Font in InputRoll.cs, it is probably slow.