diff options
author | Johannes Schickel | 2011-08-18 23:15:38 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-08-18 23:15:38 +0200 |
commit | 5491d9306f12c91bf18b5a8b7c3a5f1ddacbcd4a (patch) | |
tree | 4ba49a869180f47c88c8d1cfac6cf9b9567ce3a8 /common/keyboard.h | |
parent | d4be53c5c0f27a80f35704b5e6f08fcbad04de29 (diff) | |
download | scummvm-rg350-5491d9306f12c91bf18b5a8b7c3a5f1ddacbcd4a.tar.gz scummvm-rg350-5491d9306f12c91bf18b5a8b7c3a5f1ddacbcd4a.tar.bz2 scummvm-rg350-5491d9306f12c91bf18b5a8b7c3a5f1ddacbcd4a.zip |
COMMON: Slight formatting fix.
Diffstat (limited to 'common/keyboard.h')
-rw-r--r-- | common/keyboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keyboard.h b/common/keyboard.h index 74b8775a0f..bdd0a2d4af 100644 --- a/common/keyboard.h +++ b/common/keyboard.h @@ -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; } }; |