mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
(Windows) Fixed two MSVC compiler warnings.
This commit is contained in:
parent
05990d0457
commit
64b112a1b6
|
@ -403,7 +403,7 @@ bool MiximageGenerator::generateImage()
|
|||
marqueeImage.resize(marqueeWidth, marqueeHeight, 1, 4, 6);
|
||||
|
||||
// Add a drop shadow using 4 iterations of box blur.
|
||||
Utils::CImg::addDropShadow(marqueeImage, marqueeShadowSize, 0.6, 4);
|
||||
Utils::CImg::addDropShadow(marqueeImage, marqueeShadowSize, 0.6f, 4);
|
||||
|
||||
xPosMarquee = canvasImage.width() - marqueeImage.width();
|
||||
yPosMarquee = 0;
|
||||
|
@ -458,7 +458,7 @@ bool MiximageGenerator::generateImage()
|
|||
boxImage.resize(width, boxTargetHeight, 1, 4, 6);
|
||||
}
|
||||
|
||||
Utils::CImg::addDropShadow(boxImage, boxShadowSize, 0.6, 4);
|
||||
Utils::CImg::addDropShadow(boxImage, boxShadowSize, 0.6f, 4);
|
||||
|
||||
xPosBox = 0;
|
||||
yPosBox = canvasImage.height() - boxImage.height();
|
||||
|
|
Loading…
Reference in a new issue