diff options
author | Chris Robinson <[email protected]> | 2017-05-11 16:29:05 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-05-11 16:29:05 -0700 |
commit | ef58a8f2056d5a85f33543cebc23d08388c78e52 (patch) | |
tree | d89a6bf698083c0cf0415a666700ebbd7c87e84c /Alc/ALc.c | |
parent | 748dfb1526aaa5411bba98352fc7546e19881ad0 (diff) |
Log whether the output limiter is enabled or disabled
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2230,6 +2230,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) al_free(device->Limiter); device->Limiter = NULL; } + TRACE("Output limiter %s\n", device->Limiter ? "enabled" : "disabled"); /* Need to delay returning failure until replacement Send arrays have been * allocated with the appropriate size. |