aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMartin Kiewitz2016-02-02 10:46:16 +0100
committerMartin Kiewitz2016-02-02 10:46:16 +0100
commit82a27a33da788fa4e9f320d253cd859b20bcd7d0 (patch)
tree0460d1383b8fbe9a63727a3d3a77e6c4049f5f48 /engines
parentd88b1c947717e9081f4dc440eec375064a0b6010 (diff)
downloadscummvm-rg350-82a27a33da788fa4e9f320d253cd859b20bcd7d0.tar.gz
scummvm-rg350-82a27a33da788fa4e9f320d253cd859b20bcd7d0.tar.bz2
scummvm-rg350-82a27a33da788fa4e9f320d253cd859b20bcd7d0.zip
SCI: fix typo in comment
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/event.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp
index 121e572a58..d3225612a2 100644
--- a/engines/sci/event.cpp
+++ b/engines/sci/event.cpp
@@ -180,7 +180,7 @@ SciEvent EventManager::getScummVMEvent() {
((ourModifiers & Common::KBD_CTRL) ? SCI_KEYMOD_CTRL : 0) |
((ourModifiers & Common::KBD_SHIFT) ? SCI_KEYMOD_LSHIFT | SCI_KEYMOD_RSHIFT : 0);
// Caps lock and Scroll lock have been removed, cause we already handle upper
- // case keys ad Scroll lock doesn't seem to be used anywhere
+ // case keys and Scroll lock doesn't seem to be used anywhere
//((ourModifiers & Common::KBD_CAPS) ? SCI_KEYMOD_CAPSLOCK : 0) |
//((ourModifiers & Common::KBD_SCRL) ? SCI_KEYMOD_SCRLOCK : 0) |