1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 23:33:04 +01:00

Refactor gScreenFlags to LegacyScene enum

This commit is contained in:
Michael Steenbeek
2025-03-05 21:45:04 +01:00
committed by GitHub
parent 7a823bf928
commit 06c1fed4f7
91 changed files with 331 additions and 315 deletions

View File

@@ -315,7 +315,7 @@ static constexpr float kWindowScrollLocations[][2] = {
auto screenCoords = Translate3DTo2DWithZ(w.viewport->rotation, coords);
int32_t i = 0;
if (!(gScreenFlags & SCREEN_FLAGS_TITLE_DEMO))
if (gLegacyScene != LegacyScene::titleSequence)
{
bool found = false;
while (!found)
@@ -724,7 +724,7 @@ static constexpr float kWindowScrollLocations[][2] = {
void WindowResizeGui(int32_t width, int32_t height)
{
WindowResizeGuiScenarioEditor(width, height);
if (gScreenFlags & SCREEN_FLAGS_EDITOR)
if (isInEditorMode())
return;
auto* windowMgr = Ui::GetWindowManager();