diff options
author | Strangerke | 2013-09-07 00:34:38 +0200 |
---|---|---|
committer | Strangerke | 2013-09-07 00:34:38 +0200 |
commit | c537d2f1e5c96e29622d7c9ae272c2a9e7b8a1a8 (patch) | |
tree | 884452a36ecac0131cd19b326c3156d37857e66b /engines | |
parent | e34076739532a808a98afe15ee30f09841b3283f (diff) | |
download | scummvm-rg350-c537d2f1e5c96e29622d7c9ae272c2a9e7b8a1a8.tar.gz scummvm-rg350-c537d2f1e5c96e29622d7c9ae272c2a9e7b8a1a8.tar.bz2 scummvm-rg350-c537d2f1e5c96e29622d7c9ae272c2a9e7b8a1a8.zip |
AVALANCHE: Comment out some dead code
Diffstat (limited to 'engines')
-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); }; |