diff options
author | Nicola Mettifogo | 2007-07-02 07:07:47 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-07-02 07:07:47 +0000 |
commit | 3a0e0916d63e3d6e4c2fc00d48fad80cfaa6f028 (patch) | |
tree | bd62f1a504a3ce27585b763d72a3786f902062dd /engines | |
parent | 9a6bf869afccff63ca61a55350307ac974182ba6 (diff) | |
download | scummvm-rg350-3a0e0916d63e3d6e4c2fc00d48fad80cfaa6f028.tar.gz scummvm-rg350-3a0e0916d63e3d6e4c2fc00d48fad80cfaa6f028.tar.bz2 scummvm-rg350-3a0e0916d63e3d6e4c2fc00d48fad80cfaa6f028.zip |
Fixed glitch: protection code appearing over prompt.
svn-id: r27848
Diffstat (limited to 'engines')
-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 2de74d21b5..86fd8345d2 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -266,7 +266,7 @@ uint16 DialogueManager::askPassword() { passwordLen++; password[passwordLen] = '\0'; - _vm->_gfx->displayBalloonString(_answerBalloonX[0] + 5, _answerBalloonY[0] + _answerBalloonH[0] - 15, password, 0); + _vm->_gfx->displayBalloonString(_answerBalloonX[0] + 10, _answerBalloonY[0] + _answerBalloonH[0] - 15, password, 0); _vm->_gfx->updateScreen(); g_system->delayMillis(20); |