From 8d9195df408915847fedfd595ea73ce24357788c Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Sat, 23 May 2026 12:14:51 -0400 Subject: fix warnings --- teensy/platform/gl/gl.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'teensy/platform/gl') diff --git a/teensy/platform/gl/gl.c b/teensy/platform/gl/gl.c index 9f9c8f5..6bdae71 100644 --- a/teensy/platform/gl/gl.c +++ b/teensy/platform/gl/gl.c @@ -51,6 +51,7 @@ Gl_Platform p; static void character_callback(GLFWwindow *window, unsigned int cp) { + (void)window; p.typed = cp; } @@ -279,4 +280,5 @@ bool ty_platform_get_typed_char(uint32_t *c) if (p.typed == 0) return false; p.typed = 0; + return true; } -- cgit v1.3-2-g0d8e