Skip to content

Commit

Permalink
Date: Tue, 13 Dec 2005 13:33:50 +0000
Browse files Browse the repository at this point in the history
From: "alan buckley"
Subject: Patch to fix audio locking on RISC OS

When threads were not disabled on a RISC OS build
the audio mixer mutex was not created.
  • Loading branch information
slouken committed Dec 13, 2005
1 parent 53424cc commit 878ec5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/SDL_audio.c
Expand Up @@ -423,7 +423,7 @@ int SDL_OpenAudio(SDL_AudioSpec *desired, SDL_AudioSpec *obtained)
return(-1);
}

#if defined(macintosh) || (defined(__riscos__) && !defined(DISABLE_THREADS))
#if defined(macintosh) || (defined(__riscos__) && defined(DISABLE_THREADS))
/* FIXME: Need to implement PPC interrupt asm for SDL_LockAudio() */
#else
#if defined(__MINT__) && !defined(ENABLE_THREADS)
Expand Down

0 comments on commit 878ec5f

Please sign in to comment.