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

fix user error

This commit is contained in:
IntelOrca
2015-05-21 01:51:48 +01:00
parent a27a516e30
commit 22212df32a

View File

@@ -88,5 +88,5 @@ static bool user_string_exists(const char *text)
bool is_user_string_id(rct_string_id stringId)
{
return stringId >= 0x8000 && id < 0x9000;
return stringId >= 0x8000 && stringId < 0x9000;
}