From 8b3319bd37304a4159bc7219c5827b1df9d4b79d 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) {