From 8b952f14c5d0070900a8e48f38a26cf5f397612f Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Mon, 11 May 2026 13:55:59 +0200 Subject: [PATCH] temp fix --- runtime/Sources/Core/SDLManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Sources/Core/SDLManager.cpp b/runtime/Sources/Core/SDLManager.cpp index 91afe68..9f96f8d 100644 --- a/runtime/Sources/Core/SDLManager.cpp +++ b/runtime/Sources/Core/SDLManager.cpp @@ -119,7 +119,7 @@ namespace mlx Vec2ui SDLManager::GetVulkanDrawableSize(Handle window) const noexcept { Vec2i extent; - SDL_GetWindowSizeInPixels(static_cast(window)->window, &extent.x, &extent.y); + SDL_GetWindowSize(static_cast(window)->window, &extent.x, &extent.y); return Vec2ui{ extent }; }