aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/game.cpp')
-rw-r--r--engines/cge/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge/game.cpp b/engines/cge/game.cpp
index 58334f2e53..afa6fbeed0 100644
--- a/engines/cge/game.cpp
+++ b/engines/cge/game.cpp
@@ -35,7 +35,7 @@ uint8 *Glass(DAC *pal, uint8 r, uint8 g, uint8 b) {
uint8 *x = new uint8[256];
if (x) {
uint16 i;
- for (i = 0; i < 256; i ++) {
+ for (i = 0; i < 256; i++) {
x[i] = Closest(pal, MkDAC(((uint16)(pal[i].R) * r) / 255,
((uint16)(pal[i].G) * g) / 255,
((uint16)(pal[i].B) * b) / 255));
@@ -50,7 +50,7 @@ uint8 *Mark(DAC *pal) {
uint8 *x = new uint8[256];
if (x) {
uint16 i;
- for (i = 0; i < 256; i ++) {
+ for (i = 0; i < 256; i++) {
x[i] = Closest(pal, MkDAC(f(pal[i].R),
f(pal[i].G),
f(pal[i].B)));