diff options
author | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
commit | 04dad28228a694e681d722826615245466a3aa16 (patch) | |
tree | 54860fb951339bb4af88df4c620383323427a5fd /Alc/mmdevapi.c | |
parent | a96f8177387818d3ef69778e3f78a9ed251326c1 (diff) |
Use mini/maxi/clampi and minu/maxu/clampu to replace min/max calls
Diffstat (limited to 'Alc/mmdevapi.c')
-rw-r--r-- | Alc/mmdevapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mmdevapi.c b/Alc/mmdevapi.c index d7d85a20..ba5a36d6 100644 --- a/Alc/mmdevapi.c +++ b/Alc/mmdevapi.c @@ -431,7 +431,7 @@ static HRESULT DoReset(ALCdevice *device) device->NumUpdates = (device->NumUpdates*device->UpdateSize + min_len/2) / min_len; - device->NumUpdates = __max(device->NumUpdates, 2); + device->NumUpdates = maxu(device->NumUpdates, 2); device->UpdateSize = min_len; hr = IAudioClient_Initialize(data->client, AUDCLNT_SHAREMODE_SHARED, |