diff options
author | Chris Robinson <[email protected]> | 2017-01-27 15:17:11 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-01-27 15:17:11 -0800 |
commit | 9c019126d4d7450e0dc12f48824fb8c1214ba545 (patch) | |
tree | c39482cffd3e512e57524aca4361b935df240c63 /OpenAL32 | |
parent | 19e96c6fefa3a6e946c5f82ee8311917caeb6545 (diff) |
Remove __android_log_print calls for TRACEREF
TRACEREFs aren't normally important, and for as often as it happens, the added
function calls are wasteful even if they end up doing nothing.
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 988c7d31..2ef43ce7 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -933,7 +933,6 @@ extern enum LogLevel LogLevel; #define TRACEREF(...) do { \ if(LogLevel >= LogRef) \ AL_PRINT("(--)", __VA_ARGS__); \ - LOG_ANDROID(ANDROID_LOG_VERBOSE, __VA_ARGS__); \ } while(0) #define TRACE(...) do { \ |