diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index fb8bed5f36..d0518441b8 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -115,12 +115,16 @@ namespace Ryujinx DiscordPresence.Assets.LargeImageKey = device.System.TitleID; } - string state = device.System.TitleID.ToUpper(); + string state = device.System.TitleID; if (state == null) { state = "Ryujinx"; } + else + { + state = state.ToUpper(); + } string details = "Idling";