diff options
author | Nicola Mettifogo | 2007-06-16 11:43:07 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-06-16 11:43:07 +0000 |
commit | 9b62d2a6ea68d6f488dfcb84d980b4248d01c237 (patch) | |
tree | e641e7a08cc5ff5a03d686c803a5f385efeb431f /engines | |
parent | 5b7d2d2f10c080abefe9604929e17c522dc724eb (diff) | |
download | scummvm-rg350-9b62d2a6ea68d6f488dfcb84d980b4248d01c237.tar.gz scummvm-rg350-9b62d2a6ea68d6f488dfcb84d980b4248d01c237.tar.bz2 scummvm-rg350-9b62d2a6ea68d6f488dfcb84d980b4248d01c237.zip |
Fixed - embarrassing - broken password check.
svn-id: r27463
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/menu.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/engines/parallaction/menu.cpp b/engines/parallaction/menu.cpp index cffd452e8f..65d58812f5 100644 --- a/engines/parallaction/menu.cpp +++ b/engines/parallaction/menu.cpp @@ -325,9 +325,9 @@ void Menu::selectCharacter() { uint16 _di = 0; bool askPassword = true; - uint16 _donna_points = 0; - uint16 _dino_points = 0; - uint16 _dough_points = 0; + uint16 _donna_points; + uint16 _dino_points; + uint16 _dough_points; StaticCnv v14; @@ -356,6 +356,10 @@ void Menu::selectCharacter() { _vm->_gfx->displayString(60, 30, introMsg1[_language]); // displays message _vm->_gfx->copyScreen(Gfx::kBitFront, Gfx::kBitBack); + _donna_points = 0; + _dino_points = 0; + _dough_points = 0; + while (_di < 6) { _mouseButtons = kMouseNone; |