From 96fa75fb93a3dea4a8fbe72bde23b16979057a43 Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 8 Jul 2020 23:45:54 +0200 Subject: [PATCH] discord_impl: Update the client ID (#5449) THis should hopefully fix Rich Presence for CItra. --- src/citra_qt/discord_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/citra_qt/discord_impl.cpp b/src/citra_qt/discord_impl.cpp index e49e51106..25f97d07c 100644 --- a/src/citra_qt/discord_impl.cpp +++ b/src/citra_qt/discord_impl.cpp @@ -17,7 +17,7 @@ DiscordImpl::DiscordImpl() { // The number is the client ID for Citra, it's used for images and the // application name - Discord_Initialize("461729900748079114", &handlers, 1, nullptr); + Discord_Initialize("719647875465871400", &handlers, 1, nullptr); } DiscordImpl::~DiscordImpl() { @@ -37,7 +37,7 @@ void DiscordImpl::Update() { if (Core::System::GetInstance().IsPoweredOn()) Core::System::GetInstance().GetAppLoader().ReadTitle(title); DiscordRichPresence presence{}; - presence.largeImageKey = "citra_logo"; + presence.largeImageKey = "citra"; presence.largeImageText = "Citra is an emulator for the Nintendo 3DS"; if (Core::System::GetInstance().IsPoweredOn()) { presence.state = title.c_str();