diff options
author | Max Horn | 2007-06-22 23:14:33 +0000 |
---|---|---|
committer | Max Horn | 2007-06-22 23:14:33 +0000 |
commit | 86dffa1dc9813483c42bc3dc28e8a8c5454e59eb (patch) | |
tree | 79bc161c983f03e52cc3a8ad71fb2b87907be95e | |
parent | 8a721de91ca4fa2f4043dfab49aff0db79e7272f (diff) | |
download | scummvm-rg350-86dffa1dc9813483c42bc3dc28e8a8c5454e59eb.tar.gz scummvm-rg350-86dffa1dc9813483c42bc3dc28e8a8c5454e59eb.tar.bz2 scummvm-rg350-86dffa1dc9813483c42bc3dc28e8a8c5454e59eb.zip |
0xD -> Common::KEYCODE_RETURN
svn-id: r27639
-rw-r--r-- | engines/parallaction/dialogue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp index d67d6f5ffb..b3de3e5da3 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -210,7 +210,7 @@ uint16 Parallaction::askDialoguePassword(Dialogue *q, StaticCnv *face) { _gfx->displayBalloonString(_answerBalloonX[0] + 5, _answerBalloonY[0] + _answerBalloonH[0] - 15, "> ", 0); Common::Event e; - while (e.kbd.ascii != 0xD && passwordLen < MAX_PASSWORD_LENGTH) { + while (e.kbd.ascii != Common::KEYCODE_RETURN && passwordLen < MAX_PASSWORD_LENGTH) { // FIXME: see comment for updateInput() if (!g_system->getEventManager()->pollEvent(e)) continue; |