diff options
author | Strangerke | 2013-09-15 18:27:40 +0200 |
---|---|---|
committer | Strangerke | 2013-09-15 18:27:40 +0200 |
commit | ca596423809fff56b7e48148572df18967a012c1 (patch) | |
tree | a72d67fb0362ede13b9aa4829e0d449199a393f5 /engines/avalanche/gyro.cpp | |
parent | 18a992856ed50cac71233166aa25d239c5a45c27 (diff) | |
download | scummvm-rg350-ca596423809fff56b7e48148572df18967a012c1.tar.gz scummvm-rg350-ca596423809fff56b7e48148572df18967a012c1.tar.bz2 scummvm-rg350-ca596423809fff56b7e48148572df18967a012c1.zip |
AVALANCHE: for consistency, replace fv and ff loop variables by i and j. Remove some commented dead code
Diffstat (limited to 'engines/avalanche/gyro.cpp')
-rw-r--r-- | engines/avalanche/gyro.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/avalanche/gyro.cpp b/engines/avalanche/gyro.cpp index 7866100e38..398a7a710a 100644 --- a/engines/avalanche/gyro.cpp +++ b/engines/avalanche/gyro.cpp @@ -173,9 +173,9 @@ Gyro::Gyro(AvalancheEngine *vm) : _interrogation(0), _onCanDoPageSwap(true) { _vm = vm; // Needed because of Lucerna::load_also() - for (int fv = 0; fv < 31; fv++) { - for (int ff = 0; ff < 2; ff++) - _also[fv][ff] = 0; + for (int i = 0; i < 31; i++) { + for (int j = 0; j < 2; j++) + _also[i][j] = 0; } _totalTime = 0; |