hg::DisableCursor() on SDL is not implemented

but is required for wasm static linking.
This commit is contained in:
Paul m. p. Peny 2022-12-11 14:38:09 +01:00 committed by GitHub
parent 200d2a60a2
commit 9eec824c91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -189,6 +189,7 @@ hg::Vec2 GetWindowContentScale(const Window *window) {
void ShowCursor() { SDL_ShowCursor(SDL_ENABLE); }
void HideCursor() { SDL_ShowCursor(SDL_DISABLE); }
void DisableCursor() { SDL_ShowCursor(SDL_DISABLE); }
void WindowSystemShutdown() { }
} // namespace hg