From 176c79bada5f175202a1f67828a9d4bfc208895c Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Fri, 23 Jun 2023 18:13:26 +1000 Subject: Hardware Cursor support Updated SDL2 for this, so lib\ is no longer gitignored --- source/frontend/StarErrorScreen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/frontend/StarErrorScreen.cpp') diff --git a/source/frontend/StarErrorScreen.cpp b/source/frontend/StarErrorScreen.cpp index 872528d..6809d95 100644 --- a/source/frontend/StarErrorScreen.cpp +++ b/source/frontend/StarErrorScreen.cpp @@ -79,7 +79,8 @@ void ErrorScreen::renderCursor() { cursorPos[0] -= cursorOffset[0] * interfaceScale(); cursorPos[1] -= (cursorSize[1] - cursorOffset[1]) * interfaceScale(); - m_guiContext->drawDrawable(m_cursor.drawable(), Vec2F(cursorPos), interfaceScale()); + if (!m_guiContext->trySetCursor(m_cursor.drawable(), cursorOffset, interfaceScale())) + m_guiContext->drawDrawable(m_cursor.drawable(), Vec2F(cursorPos), interfaceScale()); } float ErrorScreen::interfaceScale() const { -- cgit v1.2.3