Mercurial > sdl-ios-xcode
changeset 1204:f9794ee91dfc
Date: Tue, 13 Dec 2005 13:33:50 +0000
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.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 13 Dec 2005 16:40:12 +0000 |
parents | a67c8b2ae356 |
children | 2ab21d9a20da |
files | src/audio/SDL_audio.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audio/SDL_audio.c Mon Dec 12 11:14:29 2005 +0000 +++ b/src/audio/SDL_audio.c Tue Dec 13 16:40:12 2005 +0000 @@ -423,7 +423,7 @@ 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)