aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/mixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/mixer.cpp')
-rw-r--r--engines/cge/mixer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cge/mixer.cpp b/engines/cge/mixer.cpp
index 6a3a45553a..e0a4409a86 100644
--- a/engines/cge/mixer.cpp
+++ b/engines/cge/mixer.cpp
@@ -55,7 +55,7 @@ MIXER::MIXER(int x, int y) : SPRITE(NULL), Fall(MIX_FALL) {
// slaves
int i;
- for (i = 0; i < MIX_MAX; i ++) {
+ for (i = 0; i < MIX_MAX; i++) {
static char fn[] = "V00";
wtom(i, fn + 1, 10, 2);
lb[i] = new BITMAP(fn);
@@ -64,7 +64,7 @@ MIXER::MIXER(int x, int y) : SPRITE(NULL), Fall(MIX_FALL) {
}
lb[i] = NULL;
- for (i = 0; i < ArrayCount(Led); i ++) {
+ for (i = 0; i < ArrayCount(Led); i++) {
register SPRITE *spr = new SPRITE(lb);
spr->SetSeq(ls);
spr->Goto(x + 2 + 12 * i, y + 8);
@@ -77,7 +77,7 @@ MIXER::MIXER(int x, int y) : SPRITE(NULL), Fall(MIX_FALL) {
Led[ArrayCount(Led) - 1]->Flags.BDel = true;
Vga->ShowQ->Insert(this);
- for (i = 0; i < ArrayCount(Led); i ++)
+ for (i = 0; i < ArrayCount(Led); i++)
Vga->ShowQ->Insert(Led[i]);
//--- reset balance
@@ -124,7 +124,7 @@ void MIXER::Tick(void) {
if (Fall)
--Fall;
else {
- for (int i = 0; i < ArrayCount(Led); i ++)
+ for (int i = 0; i < ArrayCount(Led); i++)
SNPOST_(SNKILL, -1, 0, Led[i]);
SNPOST_(SNKILL, -1, 0, this);
}