From 006091305eda7999d17a5c048d3c235f9889561d Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 23 Sep 2020 17:08:07 +0100 Subject: [PATCH] Fix an inconsistency --- src/Backends/Rendering/WiiU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Backends/Rendering/WiiU.cpp b/src/Backends/Rendering/WiiU.cpp index 3c3f7907..ff758333 100644 --- a/src/Backends/Rendering/WiiU.cpp +++ b/src/Backends/Rendering/WiiU.cpp @@ -610,7 +610,7 @@ void RenderBackend_ColourFill(RenderBackend_Surface *surface, const RenderBacken // Draw to the selected texture, instead of the screen GX2SetColorBuffer(&surface->colour_buffer, GX2_RENDER_TARGET_0); - GX2SetViewport(0, 0, (float)surface->colour_buffer.surface.width, (float)surface->colour_buffer.surface.height, 0.0f, 1.0f); + GX2SetViewport(0.0f, 0.0f, (float)surface->colour_buffer.surface.width, (float)surface->colour_buffer.surface.height, 0.0f, 1.0f); GX2SetScissor(0, 0, (float)surface->colour_buffer.surface.width, (float)surface->colour_buffer.surface.height); // Set the colour-fill... colour