[Scummvm-git-logs] scummvm master -> 2d7635736f3023c23f7e7537f6549b34479014b7
waltervn
walter at vanniftrik-it.nl
Mon Aug 12 02:50:47 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
2d7635736f ADL: Fix compilation for openpandora
Commit: 2d7635736f3023c23f7e7537f6549b34479014b7
https://github.com/scummvm/scummvm/commit/2d7635736f3023c23f7e7537f6549b34479014b7
Author: Walter van Niftrik (walter at scummvm.org)
Date: 2019-08-12T02:47:54+02:00
Commit Message:
ADL: Fix compilation for openpandora
Changed paths:
engines/adl/display_a2.cpp
diff --git a/engines/adl/display_a2.cpp b/engines/adl/display_a2.cpp
index 0471b66..773bfb2 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<double>(r64, 0.0, 1.0) * 255;
+ uint8 g = CLIP<double>(g64, 0.0, 1.0) * 255;
+ uint8 b = CLIP<double>(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<double>(y, 0.0, 1.0) * 255;
_colors[s] = this->_format.RGBToColor(brightness, brightness, brightness);
}
}
More information about the Scummvm-git-logs
mailing list