some Wii U changes

This commit is contained in:
GaryOderNichts 2021-06-05 01:59:58 +02:00
commit e5b39af6a5
4 changed files with 23 additions and 19 deletions

View file

@ -26,10 +26,10 @@ typedef struct _PLT_THREAD {
bool alive;
} PLT_THREAD;
#elif defined(__WIIU__)
typedef OSMutex PLT_MUTEX;
typedef OSFastMutex PLT_MUTEX;
typedef struct _PLT_EVENT {
OSMutex mutex;
OSCondition cond;
OSFastMutex mutex;
OSFastCondition cond;
int signalled;
} PLT_EVENT;
typedef struct _PLT_THREAD {