From b8fce54c0fc443c76dcac7c7e1adba9fd7e2a4df Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 30 Oct 2023 13:29:14 +0100 Subject: [PATCH] Minor tweaks --- src/raylib.h | 2 +- src/rcore.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/raylib.h b/src/raylib.h index 115e2be99..3f6328ada 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -506,7 +506,7 @@ typedef struct FilePathList { char **paths; // Filepaths entries } FilePathList; -// Automation event (opaque struct) +// Automation event typedef struct AutomationEvent { unsigned int frame; // Event frame unsigned int type; // Event type (AutomationEventType) diff --git a/src/rcore.c b/src/rcore.c index fdc521207..333fa4bfa 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -2995,8 +2995,6 @@ void SetupViewport(int width, int height) // NOTE: We consider render size (scaled) and offset in case black bars are required and // render area does not match full display area (this situation is only applicable on fullscreen mode) #if defined(__APPLE__) - //float xScale = 1.0f, yScale = 1.0f; - //glfwGetWindowContentScale(CORE.Window.handle, &xScale, &yScale); Vector2 scale = GetWindowScaleDPI(); rlViewport(CORE.Window.renderOffset.x/2*scale.x, CORE.Window.renderOffset.y/2*scale.y, (CORE.Window.render.width)*scale.x, (CORE.Window.render.height)*scale.y); #else