diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mgl/window/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mgl/window/window.h b/include/mgl/window/window.h index 211c2e4..96511fc 100644 --- a/include/mgl/window/window.h +++ b/include/mgl/window/window.h @@ -131,7 +131,7 @@ void mgl_window_get_view(mgl_window *self, mgl_view *view); |mgl_window_set_scissor| with that saved scissor. The scissor is set to the window size when the window is resized (window resize event). */ -void mgl_window_set_scissor(mgl_window *self, mgl_scissor *new_scissor); +void mgl_window_set_scissor(mgl_window *self, const mgl_scissor *new_scissor); void mgl_window_get_scissor(mgl_window *self, mgl_scissor *scissor); void mgl_window_set_visible(mgl_window *self, bool visible); |