mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-01 08:23:15 +00:00
Fix uninitialized variable.
svn-id: r43738
This commit is contained in:
parent
189b1ec62f
commit
9eb7d8e140
@ -80,6 +80,7 @@ KyraEngine_LoK::KyraEngine_LoK(OSystem *system, const GameFlags &flags)
|
||||
_animator = 0;
|
||||
_seq = 0;
|
||||
_characterList = 0;
|
||||
_roomTable = 0;
|
||||
_movFacingTable = 0;
|
||||
_buttonData = 0;
|
||||
_buttonDataListPtr = 0;
|
||||
@ -308,7 +309,7 @@ Common::Error KyraEngine_LoK::go() {
|
||||
setGameFlag(0xEF);
|
||||
_seqPlayerFlag = true;
|
||||
seq_intro();
|
||||
if (shouldQuit() || _flags.isDemo)
|
||||
if (shouldQuit())
|
||||
return Common::kNoError;
|
||||
if (_skipIntroFlag && _abortIntroFlag)
|
||||
resetGameFlag(0xEF);
|
||||
|
Loading…
x
Reference in New Issue
Block a user