diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-06-09 17:02:03 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-06-10 00:59:36 -0700 |
commit | f20e21a6d6b91fee2106be2fea5f794cfed7578f (patch) | |
tree | ea80e056ea686ce71f9521a368a6c726df12e22f /main | |
parent | dd966f5680eac1b068d9492d6dbba572cff54936 (diff) | |
download | redot-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.cpp | 2 |
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; |