Adjust the quick message DM console rectangle to avoid seeing characters

This commit is contained in:
smallmodel 2024-09-19 19:46:27 +02:00
parent f2e32c737b
commit f055162ac0
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -1002,9 +1002,13 @@ static UIRect2D getQuickMessageDMConsoleRectangle(void)
rect.size.height = f[3] + 50.0;
} else {
rect.pos.x = 0;
rect.pos.y = cls.glconfig.vidHeight * 0.65;
rect.pos.y = cls.glconfig.vidHeight * 0.66;
rect.size.width = cls.glconfig.vidWidth;
rect.size.height = 38.0;
// Fixed in 2.0
// Was 38.0 in 1.11 and below
// This prevents characters to be seen from the DM console
// in the quick message console
rect.size.height = 36.0;
}
return rect;