Minimal build fix.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1238 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2005-08-19 17:01:55 +00:00
parent 9a4e707fda
commit d65f912f94
1 changed files with 4 additions and 1 deletions

View File

@ -2812,9 +2812,12 @@ void Host_Frame (double time)
time2 = Sys_DoubleTime ();
// update audio
#ifdef CSQC_DAT
if (CSQC_SettingListener())
S_ExtraUpdate();
else if (cls.state == ca_active)
else
#endif
if (cls.state == ca_active)
S_Update (r_origin, vpn, vright, vup);
else
S_Update (vec3_origin, vec3_origin, vec3_origin, vec3_origin);