From 1b1589f2e8dc5cb393becde81bdd4fe24628a678 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 26 Sep 2024 08:41:31 +1000 Subject: [PATCH] Change `SNESGraphicsDebugger.RenderPalette` to re-use one `SolidBrush` --- src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs index 2c8d60c7fd..1e893c75eb 100644 --- a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs +++ b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs @@ -669,13 +669,13 @@ namespace BizHawk.Client.EmuHawk var bmp = new Bitmap(pixsize, pixsize, PixelFormat.Format32bppArgb); using (var g = Graphics.FromImage(bmp)) { + using SolidBrush brush = new(default); for (int y = 0; y < 16; y++) { for (int x = 0; x < 16; x++) { int rgb555 = lastPalette[y * 16 + x]; - int color = gd.Colorize(rgb555); - using var brush = new SolidBrush(Color.FromArgb(color)); + brush.Color = Color.FromArgb(gd.Colorize(rgb555)); g.FillRectangle(brush, new Rectangle(paletteCellSpacing + x * cellTotalSize, paletteCellSpacing + y * cellTotalSize, paletteCellSize, paletteCellSize)); } }