diff options
author | Chris Robinson <[email protected]> | 2014-11-21 14:40:10 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-21 14:40:10 -0800 |
commit | c8d82712da52d4ab76976c042e3d8947342dc061 (patch) | |
tree | 27ade7b720d448b07d1b13abdaba1f53db9b30fd /Alc/ALc.c | |
parent | ccba33169bfcdc0dd64c6e9f854a34e05cdb20da (diff) |
Reformat a couple lines
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -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)) |