summaryrefslogtreecommitdiffstats
path: root/core/object/message_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/object/message_queue.h')
-rw-r--r--core/object/message_queue.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/object/message_queue.h b/core/object/message_queue.h
index 525285e061..68969dfd39 100644
--- a/core/object/message_queue.h
+++ b/core/object/message_queue.h
@@ -51,8 +51,9 @@ private:
TYPE_NOTIFICATION,
TYPE_SET,
TYPE_END, // End marker.
+ FLAG_NULL_IS_OK = 1 << 13,
FLAG_SHOW_ERROR = 1 << 14,
- FLAG_MASK = FLAG_SHOW_ERROR - 1,
+ FLAG_MASK = FLAG_NULL_IS_OK - 1,
};
struct Page {