mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix compiler warning for tier1
should be a 64bit type as input is 64bit, too.
This commit is contained in:
parent
2637398fff
commit
b050616c35
@ -83,7 +83,7 @@ const char* V_strnistr(const char* pStr, const char* pSearch, int64_t n)
|
||||
// Skip over non-matches
|
||||
if (FastASCIIToLower(*pLetter) == FastASCIIToLower(*pSearch))
|
||||
{
|
||||
int n1 = n - 1;
|
||||
int64_t n1 = n - 1;
|
||||
|
||||
// Check for match
|
||||
const char* pMatch = pLetter + 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user