mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-10 21:40:35 +00:00
Fix use of strncmp
This commit is contained in:
parent
dc72729a40
commit
e00b8a93bf
10 changed files with 80 additions and 66 deletions
|
@ -172,7 +172,7 @@ cHandlingDataMgr::LoadHandlingData(void)
|
|||
end = start+1;
|
||||
|
||||
// yeah, this is kinda crappy
|
||||
if(strncmp(line, ";the end", 9) == 0)
|
||||
if(strcmp(line, ";the end") == 0)
|
||||
keepGoing = 0;
|
||||
else if(line[0] != ';'){
|
||||
if(line[0] == '!'){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue