From 22212df32af1aeb2a051f6a47ffc7caac000cb85 Mon Sep 17 00:00:00 2001 From: IntelOrca Date: Thu, 21 May 2015 01:51:48 +0100 Subject: [PATCH] fix user error --- src/localisation/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/localisation/user.c b/src/localisation/user.c index 82a3375288..6f8444ddac 100644 --- a/src/localisation/user.c +++ b/src/localisation/user.c @@ -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; } \ No newline at end of file