mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix (technically functional) string comparison counting an extra character in the comparison length
This commit is contained in:
parent
31be6ef867
commit
c1156ef29c
1 changed files with 1 additions and 1 deletions
|
|
@ -10236,7 +10236,7 @@ static fixed_t find_const(const char **rword)
|
|||
free(word);
|
||||
return r;
|
||||
}
|
||||
else if (fastncmp("GT_",word,4)) {
|
||||
else if (fastncmp("GT_",word,3)) {
|
||||
r = get_gametype(word);
|
||||
free(word);
|
||||
return r;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue