aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-02 02:00:37 -0700
committerChris Robinson <[email protected]>2011-09-02 02:00:37 -0700
commit3a2fa18744127618c5a6715ff1e24f18c9f9dd49 (patch)
treec0fbd8448f57cce5b466d264619f902daff4c331 /Alc/hrtf.c
parent370c9f553df9af129f1504270dbd36cd5066f250 (diff)
Log the function name instead of the source file and line number
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r--Alc/hrtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/hrtf.c b/Alc/hrtf.c
index 344b826b..de6d5953 100644
--- a/Alc/hrtf.c
+++ b/Alc/hrtf.c
@@ -291,7 +291,7 @@ ALCboolean IsHrtfCompatible(ALCdevice *device)
{
if(device->FmtChans == DevFmtStereo && device->Frequency == Hrtf.sampleRate)
return ALC_TRUE;
- ERR("Incompatible HRTF format: %s %uhz (%s %uhz needed)\n",
+ ERR("format: %s %uhz (needed: %s %uhz)\n",
DevFmtChannelsString(device->FmtChans), device->Frequency,
DevFmtChannelsString(DevFmtStereo), Hrtf.sampleRate);
return ALC_FALSE;