diff options
-rw-r--r-- | src/map/script.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/map/script.c b/src/map/script.c index 203973860..c1f2744b9 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -12730,8 +12730,10 @@ BUILDIN_FUNC(strtoupper) output = (char*)aMallocA(strlen(str) + 1); - while(str[i] != '\0') - output[i++] = TOUPPER(str[i]); + while(str[i] != '\0') { + i = i + 1; + output[i] = TOUPPER(str[i]); + } output[i] = '\0'; script_pushstr(st, output); @@ -12749,8 +12751,10 @@ BUILDIN_FUNC(strtolower) output = (char*)aMallocA(strlen(str) + 1); - while(str[i] != '\0') - output[i++] = TOLOWER(str[i]); + while(str[i] != '\0') { + i = i + 1; + output[i] = TOLOWER(str[i]); + } output[i] = '\0'; script_pushstr(st, output); |