diff options
author | Chris Robinson <[email protected]> | 2011-07-16 00:39:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-16 00:39:13 -0700 |
commit | 54b5f35125d1b85c3e16c292a9829e9d652d2e38 (patch) | |
tree | 505828b11a5f75145938b9be9be1c9a341a478f0 /Alc/hrtf.c | |
parent | 23bfb03d2a362f33e6234c0bda848241a8bd1e32 (diff) |
Warn about HRTF being disabled in the compatibility check function
Diffstat (limited to 'Alc/hrtf.c')
-rw-r--r-- | Alc/hrtf.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -154,6 +154,9 @@ 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", + DevFmtChannelsString(device->FmtChans), device->Frequency, + DevFmtChannelsString(DevFmtStereo), Hrtf.sampleRate); return ALC_FALSE; } |