summaryrefslogtreecommitdiffhomepage
path: root/src/rcore.c
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-30 13:29:14 +0100
committerRay <[email protected]>2023-10-30 13:29:14 +0100
commitb8fce54c0fc443c76dcac7c7e1adba9fd7e2a4df (patch)
treeafab7c839edcb49e3872d7c80a46eecb0cc697d4 /src/rcore.c
parentabdebc244d41508c246a3a604f9f8b94d5758704 (diff)
downloadraylib-b8fce54c0fc443c76dcac7c7e1adba9fd7e2a4df.tar.gz
raylib-b8fce54c0fc443c76dcac7c7e1adba9fd7e2a4df.zip
Minor tweaks
Diffstat (limited to 'src/rcore.c')
-rw-r--r--src/rcore.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rcore.c b/src/rcore.c
index fdc52120..333fa4bf 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