summaryrefslogtreecommitdiffstats
path: root/core/extension
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-19 01:19:21 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-19 01:19:30 +0100
commite076405f30be922d152dee102879668d68538c7e (patch)
tree9f059eae2d51cdcb170633470c82de5fe6bae143 /core/extension
parentab4c5a594ab11cf6446fa819de639bb71de9ccbf (diff)
downloadredot-engine-e076405f30be922d152dee102879668d68538c7e.tar.gz
GDExtension: Fix `-Wtype-limits` warning in `compatibility_maximum` patch check
And cleanup some dead code in `version.h`, we now always define `VERSION_PATCH`.
Diffstat (limited to 'core/extension')
-rw-r--r--core/extension/gdextension.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp
index 029f52d5a6..60487c5a52 100644
--- a/core/extension/gdextension.cpp
+++ b/core/extension/gdextension.cpp
@@ -929,9 +929,13 @@ Error GDExtensionResourceLoader::load_gdextension_resource(const String &p_path,
compatible = VERSION_MAJOR < compatibility_maximum[0];
} else if (VERSION_MINOR != compatibility_maximum[1]) {
compatible = VERSION_MINOR < compatibility_maximum[1];
- } else {
+ }
+#if VERSION_PATCH
+ // #if check to avoid -Wtype-limits warning when 0.
+ else {
compatible = VERSION_PATCH <= compatibility_maximum[2];
}
+#endif
if (!compatible) {
ERR_PRINT(vformat("GDExtension only compatible with Godot version %s or earlier: %s", compat_string, p_path));