We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e001569 commit 725975bCopy full SHA for 725975b
README.md
@@ -100,7 +100,7 @@ int main() {
100
101
while (running) {
102
while (RGFW_window_checkEvent(win)) { // or RGFW_window_checkEvents(); if you only want callbacks
103
- if (win->event.type == RGFW_quit || !RGFW_isPressedI(win, RGFW_Escape)) {
+ if (win->event.type == RGFW_quit || RGFW_isPressed(win, RGFW_Escape)) {
104
running = 0;
105
break;
106
}
0 commit comments