1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Fix scrolling text

This commit is contained in:
Ted John
2020-10-14 19:40:24 +01:00
parent 1e5d998338
commit c6152efa4e
4 changed files with 151 additions and 146 deletions

View File

@@ -784,3 +784,8 @@ namespace String
return false;
}
} // namespace String
char32_t CodepointView::iterator::GetNextCodepoint(const char* ch, const char** next)
{
return utf8_get_next(ch, next);
}