From 72c41f92e2a6827be0005ce8700bcc2beaddfa8b Mon Sep 17 00:00:00 2001 From: Riley Hawksworth Date: Sun, 31 Mar 2024 15:12:54 +0100 Subject: [PATCH] Update Discord RPC to Show the buildname instead of desc of Lime3DS. --- src/lime_qt/discord_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime_qt/discord_impl.cpp b/src/lime_qt/discord_impl.cpp index 2cdff923a..1622edf50 100644 --- a/src/lime_qt/discord_impl.cpp +++ b/src/lime_qt/discord_impl.cpp @@ -43,7 +43,7 @@ void DiscordImpl::Update() { DiscordRichPresence presence{}; presence.largeImageKey = "large_icon"; presence.smallImageKey = "small_icon"; - presence.smallImageText = "Lime is an emulator for the 3DS!"; + presence.smallImageText = Common::g_build_fullname; if (is_powered_on) { presence.largeImageText = title.c_str(); presence.state = title.c_str();