Add missing statics

This commit is contained in:
duncanspumpkin 2024-03-22 08:58:11 +00:00 committed by Gymnasiast
parent bd3ae5cbb9
commit 788878e7fc
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 5 additions and 5 deletions

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()
{