diff options
author | Chris Robinson <[email protected]> | 2011-09-02 02:00:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-09-02 02:00:37 -0700 |
commit | 3a2fa18744127618c5a6715ff1e24f18c9f9dd49 (patch) | |
tree | c0fbd8448f57cce5b466d264619f902daff4c331 /Alc/hrtf.c | |
parent | 370c9f553df9af129f1504270dbd36cd5066f250 (diff) |
Log the function name instead of the source file and line number
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |