aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-16 07:46:04 -0700
committerChris Robinson <[email protected]>2012-10-16 07:46:04 -0700
commit8a67e5cfa2bc41b13e753e1927d1e881d26ea885 (patch)
tree79ceba52b8bc59b0b181c3fd1e1d1f04bf088bd1 /Alc/ALc.c
parent617def3ef0755ade7eda391afb4dfcf32c670857 (diff)
Use an asterisk to denote a requested format option in the trace
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 424cbdc0..cdb8ed6f 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1563,13 +1563,13 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
oldChans = device->FmtChans;
oldType = device->FmtType;
- TRACE("Pre-reset: %s%s, %s%s, %uhz%s, %u update size x%d\n",
+ TRACE("Pre-reset: %s%s, %s%s, %s%uhz, %u update size x%d\n",
+ (device->Flags&DEVICE_CHANNELS_REQUEST)?"*":"",
DevFmtChannelsString(device->FmtChans),
- (device->Flags&DEVICE_CHANNELS_REQUEST)?" (requested)":"",
+ (device->Flags&DEVICE_SAMPLE_TYPE_REQUEST)?"*":"",
DevFmtTypeString(device->FmtType),
- (device->Flags&DEVICE_SAMPLE_TYPE_REQUEST)?" (requested)":"",
+ (device->Flags&DEVICE_FREQUENCY_REQUEST)?"*":"",
device->Frequency,
- (device->Flags&DEVICE_FREQUENCY_REQUEST)?" (requested)":"",
device->UpdateSize, device->NumUpdates);
if(ALCdevice_ResetPlayback(device) == ALC_FALSE)