1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Fixes for GCC

Makes jansson library required as well
This commit is contained in:
Michał Janiszewski
2016-01-31 12:11:09 +01:00
committed by IntelOrca
parent c99ec93295
commit d274abdcce
5 changed files with 13 additions and 11 deletions

View File

@@ -60,7 +60,7 @@ namespace String
{
const utf8 * lastOccurance = nullptr;
const utf8 * ch = str;
for (; ch != '\0'; ch++)
for (; *ch != '\0'; ch++)
{
if (*ch == match)
{