summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorFredia Huya-Kouadio <fhuyakou@gmail.com>2024-06-09 17:02:03 -0700
committerFredia Huya-Kouadio <fhuyakou@gmail.com>2024-06-10 00:59:36 -0700
commitf20e21a6d6b91fee2106be2fea5f794cfed7578f (patch)
treeea80e056ea686ce71f9521a368a6c726df12e22f /main
parentdd966f5680eac1b068d9492d6dbba572cff54936 (diff)
downloadredot-engine-f20e21a6d6b91fee2106be2fea5f794cfed7578f.tar.gz
Update the splash screen logic for the Godot app template
Due to limitations to the splash screen introduced in Android 12, the splash screen logic is updated to the same logic as used on other platforms, i.e: the splash screen is rendered by the Godot engine instead of the Android runtime.
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 44201522af..1cbd732747 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -2896,7 +2896,7 @@ Error Main::setup2() {
MAIN_PRINT("Main: Setup Logo");
-#if !defined(TOOLS_ENABLED) && (defined(WEB_ENABLED) || defined(ANDROID_ENABLED))
+#if !defined(TOOLS_ENABLED) && defined(WEB_ENABLED)
bool show_logo = false;
#else
bool show_logo = true;