diff options
author | Andre Heider | 2009-01-02 17:58:54 +0000 |
---|---|---|
committer | Andre Heider | 2009-01-02 17:58:54 +0000 |
commit | c1c206a455c2ea5ab0df4051ce8e2f0478a0e1c1 (patch) | |
tree | 767e959c4a733d2aa7a7f8e3a43cbc0e7036156d /backends/platform/wii | |
parent | 0633c1b1bb0fff6fb28a99302bd30aad975210d7 (diff) | |
download | scummvm-rg350-c1c206a455c2ea5ab0df4051ce8e2f0478a0e1c1.tar.gz scummvm-rg350-c1c206a455c2ea5ab0df4051ce8e2f0478a0e1c1.tar.bz2 scummvm-rg350-c1c206a455c2ea5ab0df4051ce8e2f0478a0e1c1.zip |
mutex fix, we actally want recursive locks
svn-id: r35674
Diffstat (limited to 'backends/platform/wii')
-rw-r--r-- | backends/platform/wii/osystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp index 777d82dce7..885a460bac 100644 --- a/backends/platform/wii/osystem.cpp +++ b/backends/platform/wii/osystem.cpp @@ -152,7 +152,7 @@ void OSystem_Wii::delayMillis(uint msecs) { OSystem::MutexRef OSystem_Wii::createMutex() { mutex_t *mutex = (mutex_t *) malloc(sizeof(mutex_t)); - s32 res = LWP_MutexInit(mutex, false); + s32 res = LWP_MutexInit(mutex, true); if (res) { printf("ERROR creating mutex\n"); |