diff options
author | Filippos Karapetis | 2014-12-03 01:58:07 +0200 |
---|---|---|
committer | Filippos Karapetis | 2014-12-03 01:58:07 +0200 |
commit | bbec6c913ac6ad4279e3549fc903b9c6e4521f50 (patch) | |
tree | 09d2ae303d6df3599191571216ade338020a8ba6 /engines | |
parent | bb31c435bf6502f4e1f94b3de9f046c054031a98 (diff) | |
download | scummvm-rg350-bbec6c913ac6ad4279e3549fc903b9c6e4521f50.tar.gz scummvm-rg350-bbec6c913ac6ad4279e3549fc903b9c6e4521f50.tar.bz2 scummvm-rg350-bbec6c913ac6ad4279e3549fc903b9c6e4521f50.zip |
ZVISION: Document some more cheats for ZGI
Thanks to marisa-chan for providing the location of those in pull
request #532
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/core/events.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/engines/zvision/core/events.cpp b/engines/zvision/core/events.cpp index e3bcf6f09a..2c0e63bf5c 100644 --- a/engines/zvision/core/events.cpp +++ b/engines/zvision/core/events.cpp @@ -71,9 +71,8 @@ void ZVision::cheatCodes(uint8 key) { pushKeyToCheatBuf(key); if (getGameId() == GID_GRANDINQUISITOR) { - if (checkCode("IMNOTDEAF")) { - // Unknow cheat + // Unknown cheat showDebugMsg(Common::String::format("IMNOTDEAF cheat or debug, not implemented")); } @@ -93,8 +92,12 @@ void ZVision::cheatCodes(uint8 key) { if (checkCode("MIKESPANTS")) { _scriptManager->changeLocation('g', 'j', 't', 'm', 0); } - } else if (getGameId() == GID_NEMESIS) { + // There are 3 more cheats in script files: + // - "EAT ME": gjcr.scr + // - "WHOAMI": hp1e.scr + // - "HUISOK": uh1f.scr + } else if (getGameId() == GID_NEMESIS) { if (checkCode("CHLOE")) { _scriptManager->changeLocation('t', 'm', '2', 'g', 0); _scriptManager->setStateValue(224, 1); |