mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
GRIFFON: Made theEnd() work properly
This commit is contained in:
parent
6409c3804e
commit
dfadc426b7
@ -1000,8 +1000,10 @@ void GriffonEngine::damageNPC(int npcnum, int damage, int spell) {
|
||||
}
|
||||
}
|
||||
|
||||
if (_npcInfo[npcnum].script == kScriptEndOfGame)
|
||||
if (_npcInfo[npcnum].script == kScriptEndOfGame) {
|
||||
endOfGame();
|
||||
_gameEnd = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -212,9 +212,14 @@ void GriffonEngine::updateEngine() {
|
||||
while (_itemyloc >= 16)
|
||||
_itemyloc -= 16;
|
||||
|
||||
if (_player.hp <= 0)
|
||||
if (_player.hp <= 0) {
|
||||
theEnd();
|
||||
|
||||
_gameEnd = true;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (_roomLock) {
|
||||
_roomLock = false;
|
||||
for (int i = 1; i <= _lastNpc; i++)
|
||||
|
@ -125,9 +125,6 @@ Common::Error GriffonEngine::run() {
|
||||
|
||||
if (!_shouldQuit && !_gameEnd)
|
||||
saveLoadNew();
|
||||
|
||||
if (_gameEnd)
|
||||
endOfGame();
|
||||
}
|
||||
|
||||
return Common::kNoError;
|
||||
|
Loading…
x
Reference in New Issue
Block a user