mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-08 00:10:44 +01:00
coreinit: Fix OSMessageFlags enum name.
This commit is contained in:
parent
660e16a071
commit
c4aebac137
@ -16,8 +16,9 @@ typedef struct OSMessageQueue OSMessageQueue;
|
|||||||
|
|
||||||
typedef enum OSMessageFlags
|
typedef enum OSMessageFlags
|
||||||
{
|
{
|
||||||
OS_MESSAGE_QUEUE_BLOCKING = 1 << 0,
|
OS_MESSAGE_FLAGS_NONE = 0,
|
||||||
OS_MESSAGE_QUEUE_HIGH_PRIORITY = 1 << 1,
|
OS_MESSAGE_FLAGS_BLOCKING = 1 << 0,
|
||||||
|
OS_MESSAGE_FLAGS_HIGH_PRIORITY = 1 << 1,
|
||||||
} OSMessageFlags;
|
} OSMessageFlags;
|
||||||
|
|
||||||
struct OSMessage
|
struct OSMessage
|
||||||
|
Loading…
Reference in New Issue
Block a user