diff options
author | Chris Robinson <[email protected]> | 2011-07-10 22:31:24 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-10 22:31:24 -0700 |
commit | 72cd6706368b1ec5ad6273e326d6abcecb3c55c0 (patch) | |
tree | 07e40bf89fcc463de44817ee75bf345d31d39f7a | |
parent | 9b028e76d20ecb496198e3ea311833d7a6980310 (diff) |
Use logging macros in the opensl backend
-rw-r--r-- | Alc/opensl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/opensl.c b/Alc/opensl.c index 0f8f02f3..37b88f2b 100644 --- a/Alc/opensl.c +++ b/Alc/opensl.c @@ -161,7 +161,7 @@ static const char *res_str(SLresult result) #define PRINTERR(x, s) do { \ if((x) != SL_RESULT_SUCCESS) \ - AL_PRINT("%s: %s\n", (s), res_str((x))); \ + ERROR("%s: %s\n", (s), res_str((x))); \ } while(0) /* this callback handler is called every time a buffer finishes playing */ |