mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 19:20:33 +00:00
Merge pull request #263 from Sergeanur/strcmp
Implemented faststrcmp, faststricmp, strcasecmp
This commit is contained in:
commit
0df15bb73d
19 changed files with 101 additions and 53 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "General.h"
|
||||
#include "FileMgr.h"
|
||||
#include "PedStats.h"
|
||||
|
||||
|
@ -112,7 +113,7 @@ CPedStats::GetPedStatType(char *name)
|
|||
int type;
|
||||
|
||||
for(type = 0; type < NUM_PEDSTATS; type++)
|
||||
if(strcmp(ms_apPedStats[type]->m_name, name) == 0)
|
||||
if(!CGeneral::faststrcmp(ms_apPedStats[type]->m_name, name))
|
||||
return type;
|
||||
return NUM_PEDSTATS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue