diff options
author | Adrian Frühwirth | 2018-04-19 12:08:31 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-19 12:08:31 +0200 |
commit | 9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f (patch) | |
tree | 09b3dc96b604095304ed8b7dfa5fbe1fdc08e07a /engines/cge | |
parent | 25aa60726ddbcd444043488e5c1756630637891a (diff) | |
download | scummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.tar.gz scummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.tar.bz2 scummvm-rg350-9bee9e1ba66db0ca27f13a7a09f839521c1e8b3f.zip |
JANITORIAL: Fix whitespace
Diffstat (limited to 'engines/cge')
-rw-r--r-- | engines/cge/vga13h.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp index 4d3a103663..a7e065fe01 100644 --- a/engines/cge/vga13h.cpp +++ b/engines/cge/vga13h.cpp @@ -707,7 +707,7 @@ 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; |