Update window_system.cpp

This commit is contained in:
Paul m. p. Peny 2022-12-12 17:04:07 +01:00 committed by GitHub
parent b7306f2e91
commit 9315f31546
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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