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 4aaf3863de
commit c92db19b1d

View file

@ -75,8 +75,9 @@ CListenerXAudio2::~CListenerXAudio2()
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; }
void CListenerXAudio2::release()
{
NLSOUND_XAUDIO2_RELEASE_EX(_FilterVoice, _FilterVoice->DestroyVoice())