mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 21:24:08 +00:00
Implemented faststrcmp, faststricmp, strcasecmp
This commit is contained in:
parent
c075b863d2
commit
c202fc3b55
19 changed files with 101 additions and 53 deletions
|
@ -3004,6 +3004,13 @@ BOOL _InputIsExtended(INT flag)
|
|||
return (flag & 0x1000000) != 0;
|
||||
}
|
||||
|
||||
#if (defined(_MSC_VER))
|
||||
int strcasecmp(const char *str1, const char *str2)
|
||||
{
|
||||
return _strcmpi(str1, str2);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
STARTPATCHES
|
||||
//InjectHook(0x580B30, &CJoySticks::CJoySticks, PATCH_JUMP);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue