Skip drawing RAM Watch OSD outside window bounds

This commit is contained in:
YoshiRulz 2023-03-20 08:16:05 +10:00
parent eb5ebda53f
commit 32e36e28bb
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -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)