Skip to content

Commit

Permalink
Forgot to declare volatile stuff also in c file
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed May 11, 2006
1 parent ce63981 commit 21024ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/audio/mint/SDL_mintaudio.c
Expand Up @@ -42,9 +42,9 @@
SDL_AudioDevice *SDL_MintAudio_device;
Uint8 *SDL_MintAudio_audiobuf[2]; /* Pointers to buffers */
unsigned long SDL_MintAudio_audiosize; /* Length of audio buffer=spec->size */
unsigned short SDL_MintAudio_numbuf; /* Buffer to play */
unsigned short SDL_MintAudio_mutex;
unsigned long SDL_MintAudio_clocktics;
volatile unsigned short SDL_MintAudio_numbuf; /* Buffer to play */
volatile unsigned short SDL_MintAudio_mutex;
volatile unsigned long SDL_MintAudio_clocktics;
cookie_stfa_t *SDL_MintAudio_stfa;

/* MiNT thread variables */
Expand Down

0 comments on commit 21024ce

Please sign in to comment.