mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Adjust the quick message DM console rectangle to avoid seeing characters
This commit is contained in:
parent
f2e32c737b
commit
f055162ac0
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue