From a9f482cdfcfa13dd36feb33e8d6eb9f3dcb82678 Mon Sep 17 00:00:00 2001 From: TheTurtle <47210458+raphaelthegreat@users.noreply.github.com> Date: Sun, 7 Jul 2024 22:30:52 +0300 Subject: [PATCH] config: Disable splash by default --- src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index f23b9d65..a577b143 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -18,7 +18,7 @@ static std::string logFilter; static std::string logType = "sync"; static bool isDebugDump = false; static bool isLibc = true; -static bool isShowSplash = true; +static bool isShowSplash = false; static bool isNullGpu = false; static bool shouldDumpShaders = false; static bool shouldDumpPM4 = false;