renderer_opengl: Fix rebase mistake

This commit is contained in:
ReinUsesLisp 2019-09-11 00:09:37 -03:00
parent e60d281a01
commit 6b997c8f7f

View file

@ -341,7 +341,7 @@ void RendererOpenGL::DrawScreenTriangles(const ScreenInfo& screen_info, float x,
ScreenRectVertex(x + w, y + h, texcoords.bottom * scale_u, right * scale_v), ScreenRectVertex(x + w, y + h, texcoords.bottom * scale_u, right * scale_v),
}}; }};
state.textures[0].texture = screen_info.display_texture; state.textures[0] = screen_info.display_texture;
state.framebuffer_srgb.enabled = screen_info.display_srgb; state.framebuffer_srgb.enabled = screen_info.display_srgb;
state.AllDirty(); state.AllDirty();
state.Apply(); state.Apply();