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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cge/game.cpp b/engines/cge/game.cpp
index 3acafd80e7..f2ebc0b4f8 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) {
if (x) {
uint16 i;
for (i = 0; i < 256; i++) {
- x[i] = Closest(pal, MkDAC(((uint16)(pal[i]._r) * r) / 255,
+ x[i] = closest(pal, mkDac(((uint16)(pal[i]._r) * r) / 255,
((uint16)(pal[i]._g) * g) / 255,
((uint16)(pal[i]._b) * b) / 255));
}
@@ -50,9 +50,9 @@ uint8 *Mark(DAC *pal) {
if (x) {
uint16 i;
for (i = 0; i < 256; i++) {
- x[i] = Closest(pal, MkDAC(f(pal[i].R),
- f(pal[i].G),
- f(pal[i].B)));
+ x[i] = closest(pal, mkDax(f(pal[i]._R),
+ f(pal[i]._G),
+ f(pal[i]._B)));
}
}
return x;