From e7569e89562b38261ffceee8a17cac850892e4d9 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Wed, 12 Dec 2012 19:37:29 +0000 Subject: [PATCH] IOQ3 commit 2325 --- reaction/code/client/snd_openal.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reaction/code/client/snd_openal.c b/reaction/code/client/snd_openal.c index 2d6dc42f..439095ef 100644 --- a/reaction/code/client/snd_openal.c +++ b/reaction/code/client/snd_openal.c @@ -650,6 +650,7 @@ static src_t srcList[MAX_SRC]; static int srcCount = 0; static int srcActiveCnt = 0; static qboolean alSourcesInitialised = qfalse; +static int lastListenerNumber = -1; static vec3_t lastListenerOrigin = { 0.0f, 0.0f, 0.0f }; typedef struct sentity_s @@ -752,7 +753,7 @@ static qboolean S_AL_HearingThroughEntity( int entityNum ) { float distanceSq; - if( clc.clientNum == entityNum ) + if( lastListenerNumber == entityNum ) { // FIXME: 28/02/06 This is an outrageous hack to detect // whether or not the player is rendering in third person or not. We can't @@ -2347,6 +2348,7 @@ void S_AL_Respatialize( int entityNum, const vec3_t origin, vec3_t axis[3], int orientation[0] = axis[0][0]; orientation[1] = axis[0][1]; orientation[2] = axis[0][2]; orientation[3] = axis[2][0]; orientation[4] = axis[2][1]; orientation[5] = axis[2][2]; + lastListenerNumber = entityNum; VectorCopy( sorigin, lastListenerOrigin ); // Makro contents = CM_PointContents(sorigin, 0);