Fixed: #895 BUILD BREAK: Nel Broken again with listener_xaudio2.cpp syntax error

This commit is contained in:
kervala 2010-05-13 20:55:50 +02:00
parent bc05bb46da
commit 1fff3c2084

View file

@ -75,8 +75,9 @@ CListenerXAudio2::~CListenerXAudio2()
if (soundDriver) soundDriver->removeListener(this); if (soundDriver) soundDriver->removeListener(this);
} }
#define NLSOUND_XAUDIO2_RELEASE_EX(pointer, command) if (_ListenerOk) nlassert(pointer) \ #define NLSOUND_XAUDIO2_RELEASE_EX(pointer, command) if (_ListenerOk) nlassert(pointer); \
if (pointer) { command; pointer = NULL; } if (pointer) { command; pointer = NULL; }
void CListenerXAudio2::release() void CListenerXAudio2::release()
{ {
NLSOUND_XAUDIO2_RELEASE_EX(_FilterVoice, _FilterVoice->DestroyVoice()) NLSOUND_XAUDIO2_RELEASE_EX(_FilterVoice, _FilterVoice->DestroyVoice())