summaryrefslogtreecommitdiff
path: root/sound/win32_s.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-02-05 09:56:04 +0000
committertron <tron@openttd.org>2006-02-05 09:56:04 +0000
commit867e1acf084c5b789d8db964fe27b3ce396f213f (patch)
tree17869439f86c9f22a75f3a301f462dbf4d4ec8ae /sound/win32_s.c
parentcf414c1864c8b0ceeb0368903eb1ed7393df36c1 (diff)
downloadopenttd-867e1acf084c5b789d8db964fe27b3ce396f213f.tar.xz
(svn r3552) Remove the global variable _mixer
Diffstat (limited to 'sound/win32_s.c')
-rw-r--r--sound/win32_s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/win32_s.c b/sound/win32_s.c
index 22c1b9468..a39cee985 100644
--- a/sound/win32_s.c
+++ b/sound/win32_s.c
@@ -29,7 +29,7 @@ static void FillHeaders(void)
for (hdr = _wave_hdr; hdr != endof(_wave_hdr); hdr++) {
if (!(hdr->dwFlags & WHDR_INQUEUE)) {
- MxMixSamples(_mixer, hdr->lpData, hdr->dwBufferLength / 4);
+ MxMixSamples(hdr->lpData, hdr->dwBufferLength / 4);
if (waveOutWrite(_waveout, hdr, sizeof(WAVEHDR)) != MMSYSERR_NOERROR)
error("waveOutWrite failed");
}