From f766a1d00441a7b828fd3babdd085d154b262a48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 20 Feb 2025 15:46:33 -0600 Subject: [PATCH] UWP buildfix --- UWP/App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UWP/App.cpp b/UWP/App.cpp index ea22db9540c8..67bafebe0a4d 100644 --- a/UWP/App.cpp +++ b/UWP/App.cpp @@ -330,7 +330,7 @@ void App::OnWindowSizeChanged(CoreWindow^ sender, WindowSizeChangedEventArgs^ ar PSP_CoreParameter().pixelWidth = (int)(width * scale); PSP_CoreParameter().pixelHeight = (int)(height * scale); - if (Native_UpdateScreenScale((int)width, (int)height), 1.0f) { + if (Native_UpdateScreenScale((int)width, (int)height, 1.0f)) { System_PostUIMessage(UIMessage::GPU_DISPLAY_RESIZED); } }