diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-19 15:20:09 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-19 15:20:09 -0600 |
commit | 97b3dd4cfe022abfb7d506fea55fbe9f711fc889 (patch) | |
tree | 60972fdacdd14c693fee0b4d00a619099cd0fc04 | |
parent | 3e776466457638598586a39122c3c9d317f46685 (diff) | |
parent | 2599df3b8ae5aa6b718feadefb39cab037927f3e (diff) | |
download | redot-engine-97b3dd4cfe022abfb7d506fea55fbe9f711fc889.tar.gz |
Merge pull request #99403 from dsnopek/gdextension-fix-varargs-with-no-args
GDExtension: Fix method binds not saying if they are varargs
-rw-r--r-- | core/extension/gdextension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp index 05ba114a96..258b01542e 100644 --- a/core/extension/gdextension.cpp +++ b/core/extension/gdextension.cpp @@ -154,7 +154,7 @@ public: } virtual bool is_vararg() const override { - return false; + return vararg; } #ifdef TOOLS_ENABLED |