1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 07:43:01 +01:00

Move title version info to its own window (#22302)

This commit is contained in:
Aaron van Geffen
2024-07-15 21:33:01 +02:00
committed by GitHub
parent 6de514c387
commit 5ae97d4d3b
10 changed files with 71 additions and 77 deletions

View File

@@ -1389,6 +1389,10 @@ void WindowResizeGui(int32_t width, int32_t height)
titleWind->windowPos.y = height - 182;
}
WindowBase* versionWind = WindowFindByClass(WindowClass::TitleVersion);
if (versionWind != nullptr)
versionWind->windowPos.y = height - 30;
WindowBase* exitWind = WindowFindByClass(WindowClass::TitleExit);
if (exitWind != nullptr)
{