diff options
author | Alyssa Milburn | 2011-01-01 22:36:33 +0000 |
---|---|---|
committer | Alyssa Milburn | 2011-01-01 22:36:33 +0000 |
commit | 319fdf40b29d922be0a32a3ad8d4cc3d0bb3380b (patch) | |
tree | 7187a08ee90840fda917f5b5ae9b08446b334a50 /common | |
parent | 32d7e687ee506e6e9610ee3f7a59169fc9d4e386 (diff) | |
download | scummvm-rg350-319fdf40b29d922be0a32a3ad8d4cc3d0bb3380b.tar.gz scummvm-rg350-319fdf40b29d922be0a32a3ad8d4cc3d0bb3380b.tar.bz2 scummvm-rg350-319fdf40b29d922be0a32a3ad8d4cc3d0bb3380b.zip |
COMMON: Fix comment about getButtonState.
svn-id: r55087
Diffstat (limited to 'common')
-rw-r--r-- | common/events.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/events.h b/common/events.h index 3c4f6e8d1c..f9ebce7d64 100644 --- a/common/events.h +++ b/common/events.h @@ -354,8 +354,8 @@ public: /** * Return a bitmask with the button states: - * - bit 0: left button up=1, down=0 - * - bit 1: right button up=1, down=0 + * - bit 0: left button up=0, down=1 + * - bit 1: right button up=0, down=1 */ virtual int getButtonState() const = 0; |