1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 19:25:12 +01:00

Rename global window functions to TitleCase (#19167)

This commit is contained in:
Hielke Morsink
2023-01-16 21:13:42 +01:00
committed by GitHub
parent 7f5934cc95
commit 6dafbbfb65
150 changed files with 1713 additions and 1720 deletions

View File

@@ -86,10 +86,10 @@ void TitleScreen::StopPreviewingSequence()
{
if (_previewingSequence)
{
rct_window* mainWindow = window_get_main();
rct_window* mainWindow = WindowGetMain();
if (mainWindow != nullptr)
{
window_unfollow_sprite(*mainWindow);
WindowUnfollowSprite(*mainWindow);
}
_previewingSequence = false;
_currentSequence = title_get_config_sequence();
@@ -183,7 +183,7 @@ void TitleScreen::Tick()
input_set_flag(INPUT_FLAG_VIEWPORT_SCROLLING, false);
ContextUpdateMapTooltip();
window_dispatch_update_all();
WindowDispatchUpdateAll();
gSavedAge++;
@@ -205,7 +205,7 @@ void TitleScreen::ChangePresetSequence(size_t preset)
if (!_previewingSequence)
_currentSequence = preset;
window_invalidate_all();
WindowInvalidateAll();
}
/**
@@ -218,7 +218,7 @@ void TitleScreen::CreateWindows()
ContextOpenWindow(WindowClass::TitleExit);
ContextOpenWindow(WindowClass::TitleOptions);
ContextOpenWindow(WindowClass::TitleLogo);
window_resize_gui(ContextGetWidth(), ContextGetHeight());
WindowResizeGui(ContextGetWidth(), ContextGetHeight());
_hideVersionInfo = false;
}