aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-11-19 21:37:30 +0100
committerdec05eba <dec05eba@protonmail.com>2021-11-19 21:37:30 +0100
commite1431633f7eb33041330b8bf01a5954e747c60a1 (patch)
treef97c92da301bea25ccbd9c93bad6f56fc88c3e79 /include
parent838831e13a9c6b3114d4d9ec0417f04dde47b1ac (diff)
Better document window_set_framerate_limit
Diffstat (limited to 'include')
-rw-r--r--include/mgl/window/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mgl/window/window.h b/include/mgl/window/window.h
index 2ce9a4b..2d1a774 100644
--- a/include/mgl/window/window.h
+++ b/include/mgl/window/window.h
@@ -71,7 +71,7 @@ bool mgl_window_is_mouse_button_pressed(const mgl_window *self, mgl_mouse_button
void mgl_window_close(mgl_window *self);
void mgl_window_set_title(mgl_window *self, const char *title);
void mgl_window_set_cursor_visible(mgl_window *self, bool visible);
-/* 0 = no fps limit */
+/* 0 = no fps limit, or limit fps to vsync if vsync is enabled */
void mgl_window_set_framerate_limit(mgl_window *self, int fps);
void mgl_window_set_position(mgl_window *self, mgl_vec2i position);