COMMON: Slight formatting fix.

This commit is contained in:
Johannes Schickel 2011-08-18 23:15:38 +02:00
parent d4be53c5c0
commit 5491d9306f

View file

@ -291,7 +291,7 @@ struct KeyState {
return f == (flags & ~(KBD_NUM|KBD_CAPS|KBD_SCRL));
}
bool operator ==(const KeyState &x) const {
bool operator==(const KeyState &x) const {
return keycode == x.keycode && ascii == x.ascii && flags == x.flags;
}
};