1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Replace str_is_null_or_empty() with String::IsNullOrEmpty()

This commit is contained in:
Gymnasiast
2023-01-07 15:41:38 +01:00
parent 24247e9c6b
commit a516dc507e
5 changed files with 4 additions and 11 deletions

View File

@@ -290,7 +290,7 @@ public:
}
// IME composition
if (!str_is_null_or_empty(gTextInput->ImeBuffer))
if (!String::IsNullOrEmpty(gTextInput->ImeBuffer))
{
DrawIMEComposition(dpi, cursorX, cursorY);
}