Changeset - r2449:aacd9822e85d
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-09-23 12:13:58
tron@openttd.org
(svn r2975) Use the correct types, not types which accidently have the same size on 32bit machines
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
sound/win32_s.c
Show inline comments
 
@@ -36,7 +36,7 @@ static void FillHeaders(void)
 
	}
 
}
 

	
 
static void CALLBACK waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD dwInstance,
 
static void CALLBACK waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD_PTR dwInstance,
 
	DWORD dwParam1, DWORD dwParam2)
 
{
 
	switch (uMsg) {
 
@@ -62,7 +62,7 @@ static const char *Win32SoundStart(const
 
	wfex.nAvgBytesPerSec = hz * 2 * 2;
 
	wfex.nBlockAlign = 4;
 
	wfex.wBitsPerSample = 16;
 
	if (waveOutOpen(&_waveout, WAVE_MAPPER, &wfex, (DWORD)&waveOutProc, 0, CALLBACK_FUNCTION) != MMSYSERR_NOERROR)
 
	if (waveOutOpen(&_waveout, WAVE_MAPPER, &wfex, (DWORD_PTR)&waveOutProc, 0, CALLBACK_FUNCTION) != MMSYSERR_NOERROR)
 
		return "waveOutOpen failed";
 
	PrepareHeader(&_wave_hdr[0]);
 
	PrepareHeader(&_wave_hdr[1]);
0 comments (0 inline, 0 general)