aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/verbs.cpp
diff options
context:
space:
mode:
authorGregory Montoir2007-01-08 12:34:53 +0000
committerGregory Montoir2007-01-08 12:34:53 +0000
commit8668200a64b0ed411e6b2473bc27d27137ec1b7c (patch)
treed118b335c01b9bc62c6c963386b638dd81be4376 /engines/scumm/verbs.cpp
parent8863ad6279686af60765b6cef904344384258a29 (diff)
downloadscummvm-rg350-8668200a64b0ed411e6b2473bc27d27137ec1b7c.tar.gz
scummvm-rg350-8668200a64b0ed411e6b2473bc27d27137ec1b7c.tar.bz2
scummvm-rg350-8668200a64b0ed411e6b2473bc27d27137ec1b7c.zip
added missing reference to tracker item, indentation
svn-id: r25054
Diffstat (limited to 'engines/scumm/verbs.cpp')
-rw-r--r--engines/scumm/verbs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/scumm/verbs.cpp b/engines/scumm/verbs.cpp
index ae585104dd..23f7038898 100644
--- a/engines/scumm/verbs.cpp
+++ b/engines/scumm/verbs.cpp
@@ -488,7 +488,7 @@ void ScummEngine::checkExecVerbs() {
if (!(_game.id == GID_MONKEY && _game.platform == Common::kPlatformSegaCD)) {
// This is disabled in the SegaCD version as the "vs->key" values setup
// by script-17 conflict with the values expected by the generic keyboard
- // input script
+ // input script. See tracker item #1193185.
vs = &_verbs[1];
for (i = 1; i < _numVerbs; i++, vs++) {
if (vs->verbid && vs->saveid == 0 && vs->curmode == 1) {
@@ -508,11 +508,11 @@ void ScummEngine::checkExecVerbs() {
// part of the "Passport to Adventure" demo expects the same keyboard
// mapping, even though the full game doesn't.
static const int numpad[10] = {
- '0',
- 335, 336, 337,
- 331, 332, 333,
- 327, 328, 329
- };
+ '0',
+ 335, 336, 337,
+ 331, 332, 333,
+ 327, 328, 329
+ };
_mouseAndKeyboardStat = numpad[_mouseAndKeyboardStat - '0'];
}