1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-21 06:43:04 +01:00

Add missing statics

This commit is contained in:
duncanspumpkin
2024-03-22 08:58:11 +00:00
committed by Gymnasiast
parent bd3ae5cbb9
commit 788878e7fc

View File

@@ -835,11 +835,11 @@ ScreenCoordsXY WindowGetViewportSoundIconPos(WindowBase& w)
namespace OpenRCT2::Ui::Windows namespace OpenRCT2::Ui::Windows
{ {
u8string _textBoxInput; static u8string _textBoxInput;
int32_t _textBoxFrameNo = 0; static int32_t _textBoxFrameNo = 0;
bool _usingWidgetTextBox = false; static bool _usingWidgetTextBox = false;
TextInputSession* _textInput; static TextInputSession* _textInput;
WidgetIdentifier _currentTextBox = { { WindowClass::Null, 0 }, 0 }; static WidgetIdentifier _currentTextBox = { { WindowClass::Null, 0 }, 0 };
WindowBase* WindowGetListening() WindowBase* WindowGetListening()
{ {