Don't overlap menu + debug messages (fixes #5914)

This commit is contained in:
Dennis Felsing 2022-10-07 19:03:20 +02:00
parent 96a3e553dd
commit 774f7a6f33

View file

@ -1165,6 +1165,6 @@ void CMenus::RenderIngameHint()
float Width = 300 * Graphics()->ScreenAspect();
Graphics()->MapScreen(0, 0, Width, 300);
TextRender()->TextColor(1, 1, 1, 1);
TextRender()->Text(0x0, 5, 290, 5, Localize("Menu opened. Press Esc key again to close menu."), -1.0f);
TextRender()->Text(0x0, 5, 280, 5, Localize("Menu opened. Press Esc key again to close menu."), -1.0f);
UI()->MapScreen();
}