aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-05-28 20:40:46 -0700
committerChris Robinson <[email protected]>2011-05-28 20:40:46 -0700
commita15a1abb21749aa8ca2382934948373be78c9177 (patch)
treecf185b1682383262d297b3a76c45439ef5c92199
parent7da2eea8f073aa63d2ef0dfb995510af3463c097 (diff)
Trace the format that is set when reporting HRTF disabled
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 7e4d5c6a..c03c5cc4 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1207,7 +1207,7 @@ static ALCboolean UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
if(device->FmtChans != DevFmtStereo || device->Frequency != 44100)
{
if((device->Flags&DEVICE_USE_HRTF))
- AL_PRINT("HRTF disabled (format is not 44100hz Stereo)\n");
+ AL_PRINT("HRTF disabled (format is %uhz %s)\n", device->Frequency, DevFmtChannelsString(device->FmtChans));
device->Flags &= ~DEVICE_USE_HRTF;
}