aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-11-21 14:40:10 -0800
committerChris Robinson <[email protected]>2014-11-21 14:40:10 -0800
commitc8d82712da52d4ab76976c042e3d8947342dc061 (patch)
tree27ade7b720d448b07d1b13abdaba1f53db9b30fd /Alc/ALc.c
parentccba33169bfcdc0dd64c6e9f854a34e05cdb20da (diff)
Reformat a couple lines
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index f83a884c..43f3cdc8 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1922,13 +1922,11 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
oldType = device->FmtType;
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_SAMPLE_TYPE_REQUEST)?"*":"",
- DevFmtTypeString(device->FmtType),
- (device->Flags&DEVICE_FREQUENCY_REQUEST)?"*":"",
- device->Frequency,
- device->UpdateSize, device->NumUpdates);
+ (device->Flags&DEVICE_CHANNELS_REQUEST)?"*":"", DevFmtChannelsString(device->FmtChans),
+ (device->Flags&DEVICE_SAMPLE_TYPE_REQUEST)?"*":"", DevFmtTypeString(device->FmtType),
+ (device->Flags&DEVICE_FREQUENCY_REQUEST)?"*":"", device->Frequency,
+ device->UpdateSize, device->NumUpdates
+ );
if(V0(device->Backend,reset)() == ALC_FALSE)
return ALC_INVALID_DEVICE;
@@ -1952,9 +1950,9 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
}
TRACE("Post-reset: %s, %s, %uhz, %u update size x%d\n",
- DevFmtChannelsString(device->FmtChans),
- DevFmtTypeString(device->FmtType), device->Frequency,
- device->UpdateSize, device->NumUpdates);
+ DevFmtChannelsString(device->FmtChans), DevFmtTypeString(device->FmtType),
+ device->Frequency, device->UpdateSize, device->NumUpdates
+ );
device->Hrtf = NULL;
if((device->Flags&DEVICE_HRTF_REQUEST))