Navigation Menu

Skip to content

Commit

Permalink
nacl: Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 28, 2016
1 parent 714aa21 commit c9bfcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/nacl/SDL_naclaudio.c
Expand Up @@ -50,7 +50,7 @@ static void nacl_audio_callback(void* samples, uint32_t buffer_size, PP_TimeDelt

SDL_LockMutex(private->mutex); /* !!! FIXME: is this mutex necessary? */

if (SDL_AtomicGet(&this->enabled) && !SDL_AtomicGet(&this->paused)) {
if (SDL_AtomicGet(&_this->enabled) && !SDL_AtomicGet(&_this->paused)) {
if (_this->convert.needed) {
SDL_LockMutex(_this->mixer_lock);
(*_this->spec.callback) (_this->spec.userdata,
Expand Down

0 comments on commit c9bfcbd

Please sign in to comment.