diff --git a/CMakeSettings.json b/CMakeSettings.json index fda0f3c2a..f902e6b96 100644 --- a/CMakeSettings.json +++ b/CMakeSettings.json @@ -6,7 +6,6 @@ "configurationType": "Release", "buildRoot": "${projectDir}\\Build\\${name}", "installRoot": "${projectDir}\\Install\\${name}", - "cmakeCommandArgs": "-DENABLE_QT_GUI=ON -DCMAKE_PREFIX_PATH=C:\\Qt\\6.7.3\\msvc2019_64", "buildCommandArgs": "", "ctestCommandArgs": "", "inheritEnvironments": [ "clang_cl_x64_x64" ], diff --git a/src/common/discord.cpp b/src/common/discord.cpp index 5233cdefe..1fd7c3d2c 100644 --- a/src/common/discord.cpp +++ b/src/common/discord.cpp @@ -37,7 +37,7 @@ void RPC::updatePlaying(const std::string& game, const std::string& game_id) { void RPC::updateIdle() { DiscordRichPresence rpc{}; - rpc.largeImageKey = "shadps4"; + rpc.largeImageKey = "https://github.com/shadps4-emu/shadPS4/raw/main/.github/shadps4.png"; rpc.largeImageText = "ShadPS4 is a PS4 emulator"; rpc.startTimestamp = startTimestamp; rpc.details = "Idle"; diff --git a/src/emulator.cpp b/src/emulator.cpp index 7beea266d..b3c0f87fb 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -213,7 +213,7 @@ void Emulator::Run(const std::filesystem::path& file) { //Discord RPC Discord::RPC rpc; - /*rpc.init();*/ + rpc.init(); rpc.updatePlaying(game_info.title, id); // start execution diff --git a/src/main.cpp b/src/main.cpp index 8af0e1b4e..de1d92326 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -34,6 +34,6 @@ int main(int argc, char* argv[]) { Core::Emulator emulator; emulator.Run(argv[1]); - + return 0; }