From b167d5c8dd66164b995a28a6dec789a0eb31bc51 Mon Sep 17 00:00:00 2001 From: khhs167 Date: Sat, 10 Jun 2023 08:45:29 +0200 Subject: [PATCH] Added SetWindowAspectRatio --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 68347a202..92fc34bfd 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -1693,7 +1693,7 @@ void SetWindowSize(int width, int height) } // Set window aspect ratio (for FLAG_WINDOW_RESIZABLE) -void SetWindowAspectRatio(int numerator, int denominator); +void SetWindowAspectRatio(int numerator, int denominator) { #if defined(PLATFORM_DESKTOP) glfwSetWindowAspectRatio(CORE.Window.handle, numerator, denominator);