diff options
| author | Oystein Eftevaag | 2006-02-13 03:52:57 +0000 |
|---|---|---|
| committer | Oystein Eftevaag | 2006-02-13 03:52:57 +0000 |
| commit | 2905826002709cb06b59eb2acb346116f9b31e5c (patch) | |
| tree | 5513eb92ce2005a710b4dd73b36785f0a337919a | |
| parent | 441ead453ad59680ceb34826904c8b753b23dee2 (diff) | |
| download | scummvm-rg350-2905826002709cb06b59eb2acb346116f9b31e5c.tar.gz scummvm-rg350-2905826002709cb06b59eb2acb346116f9b31e5c.tar.bz2 scummvm-rg350-2905826002709cb06b59eb2acb346116f9b31e5c.zip | |
Initializes a var that would sometimes cause the intro to run too fast.
svn-id: r20663
| -rw-r--r-- | engines/kyra/kyra.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/kyra.cpp b/engines/kyra/kyra.cpp index c85ce9b323..97da0119a5 100644 --- a/engines/kyra/kyra.cpp +++ b/engines/kyra/kyra.cpp @@ -425,7 +425,8 @@ int KyraEngine::init(GameDetector &detector) { _movFacingTable[0] = 8; _configTalkspeed = 1; - + _skipFlag = false; + _marbleVaseItem = -1; memset(_foyerItemTable, -1, sizeof(_foyerItemTable)); _mouseState = _itemInHand = -1; |
