aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-04-19 12:08:31 +0200
committerAdrian Frühwirth2018-04-19 12:08:31 +0200
commit9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f (patch)
tree09b3dc96b604095304ed8b7dfa5fbe1fdc08e07a /engines/cge2
parent25aa60726ddbcd444043488e5c1756630637891a (diff)
downloadscummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.tar.gz
scummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.tar.bz2
scummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.zip
JANITORIAL: Fix whitespace
Diffstat (limited to 'engines/cge2')
-rw-r--r--engines/cge2/vga13h.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge2/vga13h.cpp b/engines/cge2/vga13h.cpp
index 8b0d8b6c77..8b8acb6ade 100644
--- a/engines/cge2/vga13h.cpp
+++ b/engines/cge2/vga13h.cpp
@@ -938,13 +938,13 @@ uint8 Vga::closest(Dac *pal, const uint8 colR, const uint8 colG, const uint8 col
uint16 D = ((r > R) ? (r - R) : (R - r)) +
((g > G) ? (g - G) : (G - g)) +
((b > B) ? (b - B) : (B - b)) +
- ((l > L) ? (l - L) : (L - l)) * 10 ;
+ ((l > L) ? (l - L) : (L - l)) * 10;
if (D < dif) {
found = i;
dif = D;
if (D == 0)
- break; // exact!
+ break; // exact!
}
}
return found;