mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Fix #14315: Crash when renaming APVC in Korean
This commit is contained in:
@@ -105,7 +105,10 @@ public:
|
||||
|
||||
void SetText(std::string_view text, size_t maxLength)
|
||||
{
|
||||
_buffer = text;
|
||||
char* tmp = new char[maxLength];
|
||||
safe_strcpy(tmp, std::string(text).c_str(), maxLength);
|
||||
_buffer = tmp;
|
||||
delete[] tmp;
|
||||
_buffer.resize(maxLength);
|
||||
_maxInputLength = maxLength;
|
||||
gTextInput = context_start_text_input(_buffer.data(), maxLength);
|
||||
|
||||
Reference in New Issue
Block a user