aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/menu.cpp10
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;