diff options
author | Chris Robinson <[email protected]> | 2007-12-20 21:48:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-20 21:48:17 -0800 |
commit | 229bc0d7e14f2671b420ea995101fc38523285d2 (patch) | |
tree | 0217bc2b4fc04ae0fb445b6bc456b52745396737 /OpenAL32/Include/alMain.h | |
parent | 7bf9ebf5450840c20d2453fcf7fc1f1b37f979ec (diff) | |
parent | 5b0514a829afcdca201096f8f1c38ab684d45b49 (diff) |
Merge branch 'master' into efx-experiment
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 5a221065..168991b7 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -72,18 +72,18 @@ extern "C" { #endif -extern CRITICAL_SECTION g_mutex; +extern CRITICAL_SECTION _alMutex; -extern char szDebug[256]; +extern char _alDebug[256]; #define AL_PRINT(...) do { \ int _al_print_i; \ char *_al_print_fn = strrchr(__FILE__, '/'); \ if(!_al_print_fn) _al_print_fn = __FILE__; \ else _al_print_fn += 1; \ - _al_print_i = snprintf(szDebug, sizeof(szDebug), "AL lib: %s:%d: ", _al_print_fn, __LINE__); \ - snprintf(szDebug+_al_print_i, sizeof(szDebug)-_al_print_i, __VA_ARGS__); \ - fprintf(stderr, "%s", szDebug); \ + _al_print_i = snprintf(_alDebug, sizeof(_alDebug), "AL lib: %s:%d: ", _al_print_fn, __LINE__); \ + snprintf(_alDebug+_al_print_i, sizeof(_alDebug)-_al_print_i, __VA_ARGS__); \ + fprintf(stderr, "%s", _alDebug); \ } while(0) |