diff options
author | Chris Robinson <[email protected]> | 2011-07-10 21:49:01 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-10 21:49:01 -0700 |
commit | 2cd3e9bcdb09b04588818107b564860f154e9fa1 (patch) | |
tree | d9880d11723113509f379d32ec2690d28e737731 /OpenAL32/alThunk.c | |
parent | f56fbbb77773c658efca946a63dfcf0a0e28f50f (diff) |
Use the logging macro for thunk errors
Diffstat (limited to 'OpenAL32/alThunk.c')
-rw-r--r-- | OpenAL32/alThunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alThunk.c b/OpenAL32/alThunk.c index 467615cf..b925175c 100644 --- a/OpenAL32/alThunk.c +++ b/OpenAL32/alThunk.c @@ -70,7 +70,7 @@ ALenum alThunkAddEntry(ALvoid *ptr, ALuint *idx) if(!NewList) { LeaveCriticalSection(&g_ThunkLock); - AL_PRINT("Realloc failed to increase to %u enties!\n", g_ThunkArraySize*2); + ERROR("Realloc failed to increase to %u enties!\n", g_ThunkArraySize*2); return AL_OUT_OF_MEMORY; } memset(&NewList[g_ThunkArraySize], 0, g_ThunkArraySize*sizeof(ThunkEntry)); |