Fix the enum definition.

This commit is contained in:
Konstantin Isakov 2009-02-05 17:09:34 +00:00
parent cbfa6d2f74
commit bbc9901cce

View file

@ -11,7 +11,7 @@ class KeyboardState
{ {
public: public:
enum enum Modifier
{ {
Alt = 1, Alt = 1,
Ctrl = 2, Ctrl = 2,
@ -23,7 +23,7 @@ public:
RightCtrl = 128, RightCtrl = 128,
LeftShift = 256, LeftShift = 256,
RightShift = 512 RightShift = 512
} Modifier; };
/// Returns true if all Modifiers present within the given mask are pressed /// Returns true if all Modifiers present within the given mask are pressed
/// right now. /// right now.