From bfa05bf232ddd97444531d64c304b65189dff003 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Sun, 29 Jul 2007 21:06:23 +0200 Subject: [PATCH] dsound: Remove some more unused variables. --- dlls/dsound/dsound_private.h | 2 +- dlls/dsound/primary.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/dsound/dsound_private.h b/dlls/dsound/dsound_private.h index 3516c184cc2..cfbf6bdcdcf 100644 --- a/dlls/dsound/dsound_private.h +++ b/dlls/dsound/dsound_private.h @@ -84,7 +84,7 @@ struct DirectSoundDevice PWAVEFORMATEX pwfx; HWAVEOUT hwo; LPWAVEHDR pwave[DS_HEL_FRAGS]; - UINT timerID, pwplay, pwwrite, pwqueue, prebuf, precount; + UINT timerID, pwplay, pwqueue, prebuf; DWORD fraglen; PIDSDRIVERBUFFER hwbuf; LPBYTE buffer; diff --git a/dlls/dsound/primary.c b/dlls/dsound/primary.c index 271243d74a8..7b7b4644e38 100644 --- a/dlls/dsound/primary.c +++ b/dlls/dsound/primary.c @@ -134,7 +134,6 @@ static HRESULT DSOUND_PrimaryOpen(DirectSoundDevice *device) } device->pwplay = 0; - device->pwwrite = 0; device->pwqueue = 0; device->playpos = 0; device->mixpos = 0;