From e9d79263b4e14014371777f83ed2dd9fca973f5e Mon Sep 17 00:00:00 2001 From: TheTechnician27 Date: Sun, 1 Jun 2025 11:26:34 -0500 Subject: [PATCH] UI: Fix Discord Rich Presence not activating in FSUI --- pcsx2/ImGui/FullscreenUI.cpp | 2 +- pcsx2/Pcsx2Config.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/ImGui/FullscreenUI.cpp b/pcsx2/ImGui/FullscreenUI.cpp index 551260bd11..e96de9e51d 100644 --- a/pcsx2/ImGui/FullscreenUI.cpp +++ b/pcsx2/ImGui/FullscreenUI.cpp @@ -3559,7 +3559,7 @@ void FullscreenUI::DrawInterfaceSettingsPage() MenuHeading(FSUI_CSTR("Integration")); DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_USER_CIRCLE, "Enable Discord Presence"), - FSUI_CSTR("Shows the game you are currently playing as part of your profile on Discord."), "UI", "DiscordPresence", false); + FSUI_CSTR("Shows the game you are currently playing as part of your profile on Discord."), "EmuCore", "EnableDiscordPresence", false); MenuHeading(FSUI_CSTR("Game Display")); DrawToggleSetting(bsi, FSUI_ICONSTR(ICON_FA_TV, "Start Fullscreen"), diff --git a/pcsx2/Pcsx2Config.cpp b/pcsx2/Pcsx2Config.cpp index e631d8c54a..28fe11dfdf 100644 --- a/pcsx2/Pcsx2Config.cpp +++ b/pcsx2/Pcsx2Config.cpp @@ -1898,6 +1898,7 @@ Pcsx2Config::Pcsx2Config() UseSavestateSelector = true; BackupSavestate = true; WarnAboutUnsafeSettings = true; + EnableDiscordPresence = false; ManuallySetRealTimeClock = false; // To be moved to FileMemoryCard pluign (someday)