1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Fix a few assertions that were found when using debug CRT

This commit is contained in:
Ted John
2018-03-06 19:40:50 +00:00
committed by Michał Janiszewski
parent cd6739c340
commit e318e0948a
3 changed files with 18 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ static bool StringIsBlank(const utf8 * str)
{
for (auto ch = str; *ch != '\0'; ch++)
{
if (!isblank(*ch))
if (!isblank((uint8)*ch))
{
return false;
}