diff options
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/gyro2.cpp | 3 | ||||
-rw-r--r-- | engines/avalanche/gyro2.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/engines/avalanche/gyro2.cpp b/engines/avalanche/gyro2.cpp index 326713eca3..398e4a8624 100644 --- a/engines/avalanche/gyro2.cpp +++ b/engines/avalanche/gyro2.cpp @@ -175,7 +175,8 @@ byte Gyro::_whereIs[29] = { r__wisewomans // The Wise Woman. }; -const char Gyro::kItemsChar[] = "WMBParCLguKeSnIohn"; +// CHECKME: Useless? +// const char Gyro::kItemsChar[] = "WMBParCLguKeSnIohn"; Gyro::Gyro(AvalancheEngine *vm) : _interrogation(0), _onCanDoPageSwap(true) { _vm = vm; diff --git a/engines/avalanche/gyro2.h b/engines/avalanche/gyro2.h index 0dd90785fd..75dc50c720 100644 --- a/engines/avalanche/gyro2.h +++ b/engines/avalanche/gyro2.h @@ -490,7 +490,8 @@ public: private: AvalancheEngine *_vm; - static const char kItemsChar[]; // Similar as above. + // CHECKME: Useless? + // static const char kItemsChar[]; void drawShadow(int16 x1, int16 y1, int16 x2, int16 y2, byte hc, byte sc); }; |