From 2d7635736f3023c23f7e7537f6549b34479014b7 Mon Sep 17 00:00:00 2001 From: Walter van Niftrik Date: Mon, 12 Aug 2019 02:47:54 +0200 Subject: ADL: Fix compilation for openpandora --- engines/adl/display_a2.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engines/adl/display_a2.cpp b/engines/adl/display_a2.cpp index 0471b66146..773bfb21f8 100644 --- a/engines/adl/display_a2.cpp +++ b/engines/adl/display_a2.cpp @@ -277,9 +277,9 @@ public: const double g64 = y + (-0.272 * i) + (-0.647 * q); const double b64 = y + (-1.105 * i) + (1.702 * q); - uint8 r = CLIP(r64, 0.0, 1.0) * 255; - uint8 g = CLIP(g64, 0.0, 1.0) * 255; - uint8 b = CLIP(b64, 0.0, 1.0) * 255; + uint8 r = CLIP(r64, 0.0, 1.0) * 255; + uint8 g = CLIP(g64, 0.0, 1.0) * 255; + uint8 b = CLIP(b64, 0.0, 1.0) * 255; #ifdef NTSC_REMOVE_WHITE_RINGING if ((s & 0xf) == 15) { @@ -334,7 +334,7 @@ public: } } - const uint8 brightness = CLIP(y, 0.0, 1.0) * 255; + const uint8 brightness = CLIP(y, 0.0, 1.0) * 255; _colors[s] = this->_format.RGBToColor(brightness, brightness, brightness); } } -- cgit v1.2.3