Skip to content

Commit

Permalink
fix RGFW_UNUSED typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Sep 21, 2024
1 parent 3f0bd9c commit 94649de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RGFW.h
Original file line number Diff line number Diff line change
Expand Up @@ -8865,12 +8865,12 @@ u64 RGFW_getTime(void) {
}

void RGFW_releaseCursor(RGFW_window* win) {
RGFW_unused(win);
RGFW_UNUSED(win);
emscripten_exit_pointerlock();
}

void RGFW_captureCursor(RGFW_window* win, RGFW_rect r) {
RGFW_UNUSED(win); RGFW_unused(r);
RGFW_UNUSED(win); RGFW_UNUSED(r);

emscripten_request_pointerlock("#canvas", 1);
}
Expand Down

0 comments on commit 94649de

Please sign in to comment.