summaryrefslogtreecommitdiffstats
path: root/src/yuzu/discord_impl.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-07-26 17:04:57 +0200
committerGitHub <noreply@github.com>2023-07-26 17:04:57 +0200
commita1c355051e030d48b24044023c3fb35d2640386b (patch)
tree3648e6d1d4389d8453c31941a08843d956c241d8 /src/yuzu/discord_impl.h
parentMerge pull request #10990 from comex/ubsan (diff)
parentAddress feedback (diff)
downloadyuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar.gz
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar.bz2
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar.lz
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar.xz
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.tar.zst
yuzu-a1c355051e030d48b24044023c3fb35d2640386b.zip
Diffstat (limited to 'src/yuzu/discord_impl.h')
-rw-r--r--src/yuzu/discord_impl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/yuzu/discord_impl.h b/src/yuzu/discord_impl.h
index 84710b9c6..eb6cf9ae0 100644
--- a/src/yuzu/discord_impl.h
+++ b/src/yuzu/discord_impl.h
@@ -19,6 +19,13 @@ public:
void Pause() override;
void Update() override;
+private:
+ std::string GetGameString(const std::string& title);
+ void UpdateGameStatus(bool use_default);
+
+ std::string game_url{};
+ std::string game_title{};
+
Core::System& system;
};