Fix old footstep path

This commit is contained in:
moto 2022-07-15 18:37:49 -04:00
parent f8844730c2
commit f75a53a0d2
1 changed files with 4 additions and 4 deletions

View File

@ -44,10 +44,10 @@ CL_ParseTEnt
*/
void CL_InitTEnts (void)
{
cl_sfx_step[0] = S_PrecacheSound ("sounds/player/steps/step_1.wav");
cl_sfx_step[1] = S_PrecacheSound ("sounds/player/steps/step_2.wav");
cl_sfx_step[2] = S_PrecacheSound ("sounds/player/steps/step_3.wav");
cl_sfx_step[3] = S_PrecacheSound ("sounds/player/steps/step_4.wav");
cl_sfx_step[0] = S_PrecacheSound ("sounds/player/footstep1.wav");
cl_sfx_step[1] = S_PrecacheSound ("sounds/player/footstep2.wav");
cl_sfx_step[2] = S_PrecacheSound ("sounds/player/footstep3.wav");
cl_sfx_step[3] = S_PrecacheSound ("sounds/player/footstep4.wav");
}
/*