diff options
author | Retro-Junk | 2016-10-21 23:11:03 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2017-01-25 22:42:01 +0100 |
commit | 5616897f2a8480141b8ac2adb656a7e1ca45c95c (patch) | |
tree | c71b6c0eba299e3a2653b16aadbde0539e159acd | |
parent | 577bae3f3d611dfea334e7d15e0e7275e6eb37fc (diff) | |
download | scummvm-rg350-5616897f2a8480141b8ac2adb656a7e1ca45c95c.tar.gz scummvm-rg350-5616897f2a8480141b8ac2adb656a7e1ca45c95c.tar.bz2 scummvm-rg350-5616897f2a8480141b8ac2adb656a7e1ca45c95c.zip |
CRYO: Zeroize even more vars
-rw-r--r-- | engines/cryo/eden.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/cryo/eden.cpp b/engines/cryo/eden.cpp index 36f4c98c16..ca2d162719 100644 --- a/engines/cryo/eden.cpp +++ b/engines/cryo/eden.cpp @@ -147,6 +147,10 @@ EdenGame::EdenGame() { word_378CC = 0; //TODO: set by CLComputer_Init to 0 word_378CE = 0; + word_32448 = word_3244A = word_3244C = 0; + flt_32450 = flt_32454 = 0.0; //TODO: never changed, make consts? + curs_old_tick = 0; + invIconsBase = 19; // invIconsCount = (g_ed->getPlatform() == Common::kPlatformMacintosh) ? 9 : 11; invIconsCount = 11; |