Commit c5b0974b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dsound: Use correct integral type.

parent a41b45a8
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment