mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-27 07:05:38 +03:00
Cleanup. Added define CSTRIKE in build gradle
This commit is contained in:
parent
48ec89893a
commit
fd665a9764
@ -183,7 +183,7 @@ void setupToolchain(NativeBinarySpec b)
|
||||
|
||||
if (!unitTestExecutable && !mpLib)
|
||||
{
|
||||
cfg.singleDefines 'HOOK_GAMEDLL'
|
||||
cfg.singleDefines 'HOOK_GAMEDLL', 'CSTRIKE'
|
||||
}
|
||||
|
||||
if (unitTestExecutable)
|
||||
|
@ -1221,9 +1221,9 @@ void SV_StudioSetupBones(model_t *pModel, float frame, int sequence, const vec_t
|
||||
|
||||
VectorCopy(angles, temp_angles);
|
||||
|
||||
if (pEdict)
|
||||
if (pEdict != NULL)
|
||||
{
|
||||
temp_angles[1] = UTIL_GetPlayerGaitYaw(g_engfuncs.pfnIndexOfEdict(pEdict));
|
||||
temp_angles[1] = UTIL_GetPlayerGaitYaw(ENTINDEX(pEdict));
|
||||
|
||||
if (temp_angles[1] < 0)
|
||||
temp_angles[1] += 360.0f;
|
||||
|
Loading…
Reference in New Issue
Block a user