mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-05 06:35:11 +00:00
Add Time Elasped and Description Text
Display Time Elapsed when idle or playing a game Display description when hovering over the icon
This commit is contained in:
parent
29ffaca737
commit
c0333ea7c6
1 changed files with 5 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
*/
|
||||
|
||||
#include "discord_presence.h"
|
||||
#include <ctime>
|
||||
#include "third_party/discord-rpc/include/discord_rpc.h"
|
||||
#include "xenia/base/string.h"
|
||||
|
||||
|
|
@ -35,6 +36,8 @@ void DiscordPresence::NotPlaying() {
|
|||
discordPresence.state = "Idle";
|
||||
discordPresence.details = "Standby";
|
||||
discordPresence.largeImageKey = "app";
|
||||
discordPresence.largeImageText = "Xenia - Experimental Xbox 360 Emulator";
|
||||
discordPresence.startTimestamp = time(0);
|
||||
discordPresence.instance = 1;
|
||||
Discord_UpdatePresence(&discordPresence);
|
||||
}
|
||||
|
|
@ -48,6 +51,8 @@ void DiscordPresence::PlayingTitle(const std::string_view game_title) {
|
|||
// discordPresence.smallImageKey = "app";
|
||||
// discordPresence.largeImageKey = "state_ingame";
|
||||
discordPresence.largeImageKey = "app";
|
||||
discordPresence.largeImageText = "Xenia - Experimental Xbox 360 Emulator";
|
||||
discordPresence.startTimestamp = time(0);
|
||||
discordPresence.instance = 1;
|
||||
Discord_UpdatePresence(&discordPresence);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue