fixed: alcCloseDevice was not called in release builds

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@176 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
spacy51 2007-12-06 20:27:57 +00:00
parent 4e9362c238
commit b93c9ba4fa
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ OpenAL::~OpenAL()
alcDestroyContext( context );
assert( AL_NO_ERROR == alGetError() );
assert( ALC_TRUE == alcCloseDevice( device ) );
alcCloseDevice( device );
assert( AL_NO_ERROR == alGetError() );
}