aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Alc/helpers.c6
-rw-r--r--OpenAL32/Include/alMain.h12
2 files changed, 9 insertions, 9 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index 2143a4c8..262c2551 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -433,13 +433,13 @@ void *GetSymbol(void *handle, const char *name)
#endif
-void al_print(const char *func, const char *fmt, ...)
+void al_print(const char *type, const char *func, const char *fmt, ...)
{
char str[256];
int i;
- i = snprintf(str, sizeof(str), "AL lib: %s: ", func);
- if(i < (int)sizeof(str) && i > 0)
+ i = snprintf(str, sizeof(str), "AL lib: %s %s: ", type, func);
+ if(i > 0 && (unsigned int)i < sizeof(str))
{
va_list ap;
va_start(ap, fmt);
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index ba6a5c8b..0b584fe2 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -826,8 +826,8 @@ ALfloat CalcHrtfDelta(ALfloat oldGain, ALfloat newGain, const ALfloat olddir[3],
void GetLerpedHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat (*coeffs)[2], ALuint *delays);
ALuint GetMovingHrtfCoeffs(const struct Hrtf *Hrtf, ALfloat elevation, ALfloat azimuth, ALfloat gain, ALfloat delta, ALint counter, ALfloat (*coeffs)[2], ALuint *delays, ALfloat (*coeffStep)[2], ALint *delayStep);
-void al_print(const char *func, const char *fmt, ...) PRINTF_STYLE(2,3);
-#define AL_PRINT(...) al_print(__FUNCTION__, __VA_ARGS__)
+void al_print(const char *type, const char *func, const char *fmt, ...) PRINTF_STYLE(3,4);
+#define AL_PRINT(T, ...) al_print((T), __FUNCTION__, __VA_ARGS__)
extern FILE *LogFile;
enum LogLevel {
@@ -841,22 +841,22 @@ extern enum LogLevel LogLevel;
#define TRACEREF(...) do { \
if(LogLevel >= LogRef) \
- AL_PRINT(__VA_ARGS__); \
+ AL_PRINT("(--)", __VA_ARGS__); \
} while(0)
#define TRACE(...) do { \
if(LogLevel >= LogTrace) \
- AL_PRINT(__VA_ARGS__); \
+ AL_PRINT("(II)", __VA_ARGS__); \
} while(0)
#define WARN(...) do { \
if(LogLevel >= LogWarning) \
- AL_PRINT(__VA_ARGS__); \
+ AL_PRINT("(WW)", __VA_ARGS__); \
} while(0)
#define ERR(...) do { \
if(LogLevel >= LogError) \
- AL_PRINT(__VA_ARGS__); \
+ AL_PRINT("(EE)", __VA_ARGS__); \
} while(0)