From f4298d74f462b4f734678c18acfda6382422a89d Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 26 Sep 2024 08:15:07 +1000 Subject: [PATCH] Change `SNESGraphicsDebugger.DrawPaletteRegion` to re-use one `Pen` --- .../tools/SNES/SNESGraphicsDebugger.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs index 563ac12102..2c8d60c7fd 100644 --- a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs +++ b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs @@ -611,6 +611,8 @@ namespace BizHawk.Client.EmuHawk return GetPaletteRegion(start, num); } + private readonly Pen _pen = new(default(Color)); + private void DrawPaletteRegion(Graphics g, Color color, Rectangle region) { int cellTotalSize = (paletteCellSize + paletteCellSpacing); @@ -621,8 +623,8 @@ namespace BizHawk.Client.EmuHawk int height = cellTotalSize * region.Height; var rect = new Rectangle(x, y, width, height); - using var pen = new Pen(color); - g.DrawRectangle(pen, rect); + _pen.Color = color; + g.DrawRectangle(_pen, rect); } //if a tile set is being displayed, this will adapt the user's color selection into a palette to be used for rendering the tiles