2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-01 01:25:38 +03:00

Fixed typo in SV_FindModelNumbers

This commit is contained in:
Artem Golubikhin 2017-02-11 06:15:55 +03:00 committed by GitHub
parent d7dc53ced2
commit 4ec65317f9

View File

@ -710,7 +710,7 @@ void SV_FindModelNumbers(void)
// use case-sensitive names to increase performance
#ifdef REHLDS_FIXES
if (!Q_stricmp(g_psv.model_precache[i], "models/player.mdl"))
if (!Q_strcmp(g_psv.model_precache[i], "models/player.mdl"))
sv_playermodel = i;
#else
if (!Q_stricmp(g_psv.model_precache[i], "models/player.mdl"))