Add KEY_CHAR

This commit is contained in:
Henrik Rydgard 2014-06-29 23:31:09 +02:00
parent 50d4319832
commit b0f2361730

View File

@ -160,6 +160,7 @@ enum {
KEY_UP = 1 << 1,
KEY_HASWHEELDELTA = 1 << 2,
KEY_IS_REPEAT = 1 << 3,
KEY_CHAR = 1 << 4, // Unicode character input. Cannot detect keyups of these so KEY_DOWN and KEY_UP are zero when this is set.
};
struct KeyInput {