1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-20 14:23:08 +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
{
u8string _textBoxInput;
int32_t _textBoxFrameNo = 0;
bool _usingWidgetTextBox = false;
TextInputSession* _textInput;
WidgetIdentifier _currentTextBox = { { WindowClass::Null, 0 }, 0 };
static u8string _textBoxInput;
static int32_t _textBoxFrameNo = 0;
static bool _usingWidgetTextBox = false;
static TextInputSession* _textInput;
static WidgetIdentifier _currentTextBox = { { WindowClass::Null, 0 }, 0 };
WindowBase* WindowGetListening()
{