From f75a53a0d23026b17535becf6f9c04568cf5b182 Mon Sep 17 00:00:00 2001 From: moto Date: Fri, 15 Jul 2022 18:37:49 -0400 Subject: [PATCH] Fix old footstep path --- source/cl_tent.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/cl_tent.c b/source/cl_tent.c index 6a796dd..c62d5a7 100644 --- a/source/cl_tent.c +++ b/source/cl_tent.c @@ -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"); } /*