all repos — mgba @ d945391da6f5f0fefa78a561b8f02680402e4d24

mGBA Game Boy Advance Emulator

3DS: Fix DISABLE_THREADING build
Jeffrey Pfau jeffrey@endrift.com
Sun, 03 Jan 2016 10:34:25 -0800
commit

d945391da6f5f0fefa78a561b8f02680402e4d24

parent

85704820fb6d4c7798fc656445fe7dd82766df8d

2 files changed, 6 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -47,6 +47,7 @@ - Qt: Allow use of modifier keys as input

- Qt: Optimize log viewer - GBA RR: Starting from savestate now embeds the savegame - Libretro: Add install target for libretro core + - 3DS: Update to new ctrulib API 0.3.2: (2015-12-16) Bugfixes:
M src/util/threading.hsrc/util/threading.h

@@ -22,7 +22,12 @@ #define DISABLE_THREADING

#endif #endif #ifdef DISABLE_THREADING +#ifdef _3DS +// ctrulib already has a type called Thread +#include <3ds/thread.h> +#else typedef void* Thread; +#endif typedef void* Mutex; typedef void* Condition;