From 32e36e28bb9d78714c15f28a5af0200a15763a80 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 20 Mar 2023 08:16:05 +1000 Subject: [PATCH] Skip drawing RAM Watch OSD outside window bounds --- src/BizHawk.Client.Common/DisplayManager/OSDManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BizHawk.Client.Common/DisplayManager/OSDManager.cs b/src/BizHawk.Client.Common/DisplayManager/OSDManager.cs index d8916c78f0..cb4d6cdff1 100644 --- a/src/BizHawk.Client.Common/DisplayManager/OSDManager.cs +++ b/src/BizHawk.Client.Common/DisplayManager/OSDManager.cs @@ -172,6 +172,7 @@ namespace BizHawk.Client.Common try { var point = GetCoordinates(g, text.Position, text.Message); + if (point.Y >= g.ClipBounds.Height) continue; // simple optimisation; don't bother drawing off-screen g.DrawString(text.Message, MessageFont, text.ForeColor, point.X, point.Y); } catch (Exception)