aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
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)