aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-03-30 21:24:15 +0000
committerLionel Ulmer2002-03-30 21:24:15 +0000
commit37c990d3ab251503b0b5c7936df085c1d7d4558d (patch)
tree7d0cd49e04952edb4913fb83e61281da053fb7e2 /init.cpp
parent70850a3b730f57598dc036ea141246c07f03b026 (diff)
downloadscummvm-rg350-37c990d3ab251503b0b5c7936df085c1d7d4558d.tar.gz
scummvm-rg350-37c990d3ab251503b0b5c7936df085c1d7d4558d.tar.bz2
scummvm-rg350-37c990d3ab251503b0b5c7936df085c1d7d4558d.zip
Another small init fix thanks to Valgrind (using Sam n Max this time).
svn-id: r3841
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/init.cpp b/init.cpp
index d98729698a..4e16b1f17c 100644
--- a/init.cpp
+++ b/init.cpp
@@ -149,4 +149,7 @@ Scumm::Scumm(void)
_saveLoadFlag = 0;
_completeScreenRedraw = false; /* Maybe it should be true to force a full redraw on start ? */
_expire_counter = 0; /* Start expired (0xFF) or not ? */
+ _leftBtnPressed = 0;
+ _rightBtnPressed = 0;
+ _lastKeyHit = 0;
}