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:
committed by
Michał Janiszewski
parent
cd6739c340
commit
e318e0948a
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user