diff options
author | Chris Robinson <[email protected]> | 2011-05-28 20:40:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-28 20:40:46 -0700 |
commit | a15a1abb21749aa8ca2382934948373be78c9177 (patch) | |
tree | cf185b1682383262d297b3a76c45439ef5c92199 | |
parent | 7da2eea8f073aa63d2ef0dfb995510af3463c097 (diff) |
Trace the format that is set when reporting HRTF disabled
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |