diff options
author | Nicola Mettifogo | 2008-07-17 00:38:11 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-07-17 00:38:11 +0000 |
commit | 17d86414cb5d7c2b4c5159b5b5d1b2330fa8eb83 (patch) | |
tree | 9463b74b64e89d3bf6c8f825e01882a15f2fffe8 | |
parent | bd17a600dcf86255be4e5d7d359b190e4b1351b1 (diff) | |
download | scummvm-rg350-17d86414cb5d7c2b4c5159b5b5d1b2330fa8eb83.tar.gz scummvm-rg350-17d86414cb5d7c2b4c5159b5b5d1b2330fa8eb83.tar.bz2 scummvm-rg350-17d86414cb5d7c2b4c5159b5b5d1b2330fa8eb83.zip |
Fixed regression bug in dialogue, which de-facto allowed user to skip in-game protection.
svn-id: r33086
-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 6e91dd8a88..6d9dfa5e10 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -166,7 +166,7 @@ bool DialogueManager::displayAnswer(uint16 i) { assert(id >= 0); _visAnswers[id] = i; - _askPassword = (strstr(a->_text, "%p") != NULL); + _askPassword = (strstr(a->_text, "%P") != NULL); _numVisAnswers++; return true; |