fix mingw build

This commit is contained in:
2026-03-21 02:35:04 +03:00
parent f69c009da9
commit 011c8f7123
7 changed files with 51 additions and 37 deletions

View File

@@ -109,7 +109,7 @@ public:
virtual bool supportsTouchscreen() override { return true; }
virtual void hideCursor(bool hide) {
virtual void hideCursor(bool hide) override {
int isHide = hide ? GLFW_CURSOR_NORMAL : GLFW_CURSOR_HIDDEN;
glfwSetInputMode(window, GLFW_CURSOR, isHide);
}