This commit is contained in:
Thomas Guillemard 2019-08-18 17:46:21 +02:00
parent 9c8d916024
commit cb11317c80
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -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";