Skip to content
Snippets Groups Projects
Commit ad43131d authored by Adya's avatar Adya Committed by zqpvr
Browse files

fix discord rpc

parent d02af377
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ option(SUYU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OF ...@@ -44,7 +44,7 @@ option(SUYU_USE_QT_WEB_ENGINE "Use QtWebEngine for web applet implementation" OF
option(ENABLE_CUBEB "Enables the cubeb audio backend" ON) option(ENABLE_CUBEB "Enables the cubeb audio backend" ON)
option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" OFF) option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence" ON)
option(SUYU_TESTS "Compile tests" "${BUILD_TESTING}") option(SUYU_TESTS "Compile tests" "${BUILD_TESTING}")
......
// SPDX-FileCopyrightText: 2018 Citra Emulator Project & 2024 suyu Emulator Project // SPDX-FileCopyrightText: 2018 Citra Emulator Project & 2024 suyu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// Modified by AdyaGMD on <2024/03/09>
#include <chrono> #include <chrono>
#include <string> #include <string>
...@@ -24,7 +26,7 @@ DiscordImpl::DiscordImpl(Core::System& system_) : system{system_} { ...@@ -24,7 +26,7 @@ DiscordImpl::DiscordImpl(Core::System& system_) : system{system_} {
DiscordEventHandlers handlers{}; DiscordEventHandlers handlers{};
// The number is the client ID for suyu, it's used for images and the // The number is the client ID for suyu, it's used for images and the
// application name // application name
Discord_Initialize("712465656758665259", &handlers, 1, nullptr); Discord_Initialize("1216044747781570671", &handlers, 1, nullptr);
} }
DiscordImpl::~DiscordImpl() { DiscordImpl::~DiscordImpl() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment