dsound: Use correct integral type.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a41b45a8c5
commit
c5b0974b93
|
@ -694,7 +694,8 @@ static void DSOUND_WaveQueue(DirectSoundDevice *device, LPBYTE pos, DWORD bytes)
|
|||
*/
|
||||
static void DSOUND_PerformMix(DirectSoundDevice *device)
|
||||
{
|
||||
DWORD block, pad_frames, pad_bytes, frames;
|
||||
DWORD block, pad_bytes, frames;
|
||||
UINT32 pad_frames;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p)\n", device);
|
||||
|
|
Loading…
Reference in New Issue