diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-02-08 11:24:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 11:24:48 +0100 |
commit | c4fb119f03477ad9a494ba6cdad211b35a8efcce (patch) | |
tree | 501be7c2e9f0aef439fc7cfe6222a37b23827124 /platform/android/java/lib/src | |
parent | 8843d9ad347e5c3be5130153aeecdf48e4fe5a14 (diff) | |
parent | 9d83e807e7179aea4ca709c0b5a08e8f9377367f (diff) |
Merge pull request #72816 from m4gr3d/downgrade_vulkan_warning
Downgrade the vulkan abort logic to a warning
Diffstat (limited to 'platform/android/java/lib/src')
-rw-r--r-- | platform/android/java/lib/src/org/godotengine/godot/Godot.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/android/java/lib/src/org/godotengine/godot/Godot.java b/platform/android/java/lib/src/org/godotengine/godot/Godot.java index 307fa7bae1..a03da7292b 100644 --- a/platform/android/java/lib/src/org/godotengine/godot/Godot.java +++ b/platform/android/java/lib/src/org/godotengine/godot/Godot.java @@ -83,6 +83,7 @@ import android.widget.Button; import android.widget.FrameLayout; import android.widget.ProgressBar; import android.widget.TextView; +import android.widget.Toast; import androidx.annotation.CallSuper; import androidx.annotation.Keep; @@ -277,9 +278,7 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC if (usesVulkan()) { if (!meetsVulkanRequirements(activity.getPackageManager())) { - Log.e(TAG, "Missing requirements for vulkan support! Aborting..."); - alert(R.string.error_missing_vulkan_requirements_message, R.string.text_error_title, this::forceQuit); - return false; + Log.w(TAG, "Missing requirements for vulkan support!"); } mRenderView = new GodotVulkanRenderView(activity, this); } else { |