From bf8f4c17f08b987df942316644dbc8e078512e90 Mon Sep 17 00:00:00 2001 From: Quantum Date: Sun, 18 Sep 2022 22:09:54 -0400 Subject: [PATCH] [client] opengl: render cursor in spice mode --- client/renderers/OpenGL/opengl.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/renderers/OpenGL/opengl.c b/client/renderers/OpenGL/opengl.c index c3c62ce3..6d2ec903 100644 --- a/client/renderers/OpenGL/opengl.c +++ b/client/renderers/OpenGL/opengl.c @@ -495,14 +495,12 @@ bool opengl_render(LG_Renderer * renderer, LG_RendererRotate rotate, const bool glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); + updateMouseShape(this); if (this->spiceShow) glCallList(this->spiceList); else - { - updateMouseShape(this); glCallList(this->texList + this->texRIndex); - drawMouse(this); - } + drawMouse(this); if (app_renderOverlay(NULL, 0) != 0) {