comparison src/audio/mint/SDL_mintaudio.c @ 704:c4803992e09c

Small bugfixes
author Patrice Mandin <patmandin@gmail.com>
date Sat, 30 Aug 2003 20:00:11 +0000
parents 594422ab8f9f
children b8d311d90021
comparison
equal deleted inserted replaced
703:ca809c1b41ca 704:c4803992e09c
36 36
37 /* The audio device */ 37 /* The audio device */
38 38
39 SDL_AudioDevice *SDL_MintAudio_device; 39 SDL_AudioDevice *SDL_MintAudio_device;
40 Uint8 *SDL_MintAudio_audiobuf[2]; /* Pointers to buffers */ 40 Uint8 *SDL_MintAudio_audiobuf[2]; /* Pointers to buffers */
41 long SDL_MintAudio_audiosize; /* Length of audio buffer=spec->size */ 41 unsigned long SDL_MintAudio_audiosize; /* Length of audio buffer=spec->size */
42 long SDL_MintAudio_numbuf; /* Buffer to play */ 42 unsigned short SDL_MintAudio_numbuf; /* Buffer to play */
43 long SDL_MintAudio_mutex; 43 unsigned short SDL_MintAudio_mutex;
44 cookie_stfa_t *SDL_MintAudio_stfa; 44 cookie_stfa_t *SDL_MintAudio_stfa;
45 45
46 /* The callback function, called by each driver whenever needed */ 46 /* The callback function, called by each driver whenever needed */
47 47
48 void SDL_MintAudio_Callback(void) 48 void SDL_MintAudio_Callback(void)