summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-09-30 18:16:01 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-09-30 18:16:01 -0400
commitb4f168ee72fecd8cc97d87ee032ea47283585f46 (patch)
tree07ddbca1050aa8de895a66fee8e47b9c208d679c
parentb237543e4287be8bfbcd6bfc392aa81e305d7aec (diff)
video: Fix SDL_GL_MakeCurrent return type.HEADmaster
-rw-r--r--sdl2/bindings.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl2/bindings.scm b/sdl2/bindings.scm
index 058e342..7db2501 100644
--- a/sdl2/bindings.scm
+++ b/sdl2/bindings.scm
@@ -235,7 +235,7 @@ RETURN-TYPE and accept arguments of ARG-TYPES."
void "SDL_GL_DeleteContext" '(*))
(define-foreign sdl-gl-make-current
- void "SDL_GL_MakeCurrent" '(* *))
+ int "SDL_GL_MakeCurrent" '(* *))
(define-foreign sdl-gl-swap-window
void "SDL_GL_SwapWindow" '(*))