aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/scrolls2.cpp
diff options
context:
space:
mode:
authorStrangerke2013-09-04 13:34:58 +0200
committerStrangerke2013-09-04 13:34:58 +0200
commitfe8e5c7325d3b88ac8bb2dd3db6ee2761e5f9764 (patch)
tree2d48ef83b811c47a78ccd95f9394218cad5e6326 /engines/avalanche/scrolls2.cpp
parentff31d8e52152c7a988764d361fbcaeda049d2645 (diff)
downloadscummvm-rg350-fe8e5c7325d3b88ac8bb2dd3db6ee2761e5f9764.tar.gz
scummvm-rg350-fe8e5c7325d3b88ac8bb2dd3db6ee2761e5f9764.tar.bz2
scummvm-rg350-fe8e5c7325d3b88ac8bb2dd3db6ee2761e5f9764.zip
AVALANCHE: Fix coding style: ++ and --
Diffstat (limited to 'engines/avalanche/scrolls2.cpp')
-rw-r--r--engines/avalanche/scrolls2.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/avalanche/scrolls2.cpp b/engines/avalanche/scrolls2.cpp
index 615bdd5a52..65c4faaae0 100644
--- a/engines/avalanche/scrolls2.cpp
+++ b/engines/avalanche/scrolls2.cpp
@@ -207,7 +207,7 @@ bool Scrolls::they_match(tunetype &played) {
mistakes = 0;
- for (fv = 1; fv <= sizeof(played); fv ++)
+ for (fv = 1; fv <= sizeof(played); fv++)
if (played[fv] != _vm->_gyro->tune[fv]) {
mistakes += 1;
}
@@ -303,8 +303,8 @@ void Scrolls::block_drop(Common::String fn, int16 xl, int16 yl, int16 y) {
}
/*byte bit;
- for (uint16 fv = 1; fv <= yl; fv ++)
- for (bit = 0; bit <= 3; bit ++) {
+ for (uint16 fv = 1; fv <= yl; fv++)
+ for (bit = 0; bit <= 3; bit++) {
port[0x3c4] = 2;
port[0x3ce] = 4;
port[0x3c5] = 1 << bit;
@@ -560,7 +560,7 @@ bool Scrolls::ask(Common::String question) {
void Scrolls::resetscroll() {
_vm->_gyro->scrolln = 1;
- for (int j = 0; j < 15; j ++)
+ for (int j = 0; j < 15; j++)
if (!_vm->_gyro->scroll[j].empty())
_vm->_gyro->scroll[j].clear();
}
@@ -760,7 +760,7 @@ void Scrolls::calldrivers() {
nn = 1;
for (nnn = 0; nnn < numobjs; nnn++)
if (_vm->_gyro->dna.obj[nnn]) {
- nn ++;
+ nn++;
display(_vm->_gyro->get_better(nnn) + ", " + kControlToBuffer);
}
}