From 17c6633bd310028278ac2c00da41fd7cf3fdecaa Mon Sep 17 00:00:00 2001 From: Lothar Serra Mari Date: Tue, 31 Aug 2021 21:37:50 +0200 Subject: [PATCH] BASE: Enable Discord RPC integration by default --- base/commandLine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base/commandLine.cpp b/base/commandLine.cpp index f84fa1265f2..53927be248e 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -352,6 +352,9 @@ void registerDefaults() { ConfMan.registerDefault("fluidsynth_misc_interpolation", "4th"); #endif +#ifdef USE_DISCORD + ConfMan.registerDefault("discord_rpc", true); +#endif } static bool parseGameName(const Common::String &gameName, Common::String &engineId, Common::String &gameId) {