From dbf928ff617e6843c437ca2c864ad6c55e07949b Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 25 Aug 2026 22:13:51 +1000 Subject: [PATCH] FullscreenUI: Fix inverted parameters --- src/core/fullscreenui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/fullscreenui.cpp b/src/core/fullscreenui.cpp index a19eb0af4..2b12ddfaf 100644 --- a/src/core/fullscreenui.cpp +++ b/src/core/fullscreenui.cpp @@ -1735,8 +1735,8 @@ void FullscreenUI::DrawPauseMenu() } if (MenuButtonWithoutSummary(FSUI_ICONVSTR(ICON_FA_WRENCH, "Game Properties"), - has_game && GameList::CanEditGameSettingsForPath(VideoThread::GetGameSerial(), - VideoThread::GetGamePath()))) + has_game && GameList::CanEditGameSettingsForPath(VideoThread::GetGamePath(), + VideoThread::GetGameSerial()))) { BeginTransition(TransitionEffect::ZoomIn, DEFAULT_TRANSITION_TIME, []() { SwitchToGameSettings(); }); }