System/Libraries/Html/Renderer: Fix BGR/RGB flip in background
This is no longer needed and breaks things, so let's revert it.
This commit is contained in:
parent
24500f52a3
commit
99268200f4
1 changed files with 1 additions and 1 deletions
|
@ -995,7 +995,7 @@ U0 @render_node_list(@html_dom_node* node, HtmlRenderer* renderer)
|
|||
if (!StrICmp(node->tagName, "body")) {
|
||||
renderer->background_ctx->width = Display.Width();
|
||||
renderer->background_ctx->height = Display.Height();
|
||||
renderer->background_ctx->fill(@image_pixel_flip_rgb_bgr(node->backgroundColor));
|
||||
renderer->background_ctx->fill(node->backgroundColor);
|
||||
}
|
||||
|
||||
if (!StrICmp(node->tagName, "form"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue