Fix a numeric conversion warning.
This commit is contained in:
parent
58db06d845
commit
fb87431ba5
|
@ -607,7 +607,7 @@ void GraphicsWindow::Draw(Canvas *canvas) {
|
||||||
|
|
||||||
// Place the background at the very back of the Z order.
|
// Place the background at the very back of the Z order.
|
||||||
Canvas::Fill fillBackground = {};
|
Canvas::Fill fillBackground = {};
|
||||||
fillBackground.color = RGBi(0.0, 0.0, 0.0);
|
fillBackground.color = RGBi(0, 0, 0);
|
||||||
fillBackground.layer = Canvas::Layer::BACK;
|
fillBackground.layer = Canvas::Layer::BACK;
|
||||||
Canvas::hFill hcfBackground = canvas->GetFill(fillBackground);
|
Canvas::hFill hcfBackground = canvas->GetFill(fillBackground);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user