1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Rename TEXT_INPUT_SIZE to kTextInputSize

This commit is contained in:
Harry-Hopkinson
2024-04-14 17:35:28 +00:00
parent b294d97f03
commit f357dd6cab
4 changed files with 5 additions and 5 deletions

View File

@@ -1670,8 +1670,8 @@ void WindowStartTextbox(
// text.
if (existing_text != STR_NONE)
{
char tempBuf[TEXT_INPUT_SIZE]{};
size_t len = FormatStringLegacy(tempBuf, TEXT_INPUT_SIZE, existing_text, &existing_args);
char tempBuf[kTextInputSize]{};
size_t len = FormatStringLegacy(tempBuf, kTextInputSize, existing_text, &existing_args);
gTextBoxInput.assign(tempBuf, len);
}