浏览代码

Fix `GDExtensionLoader` using the wrong super type in `GDSOFTCLASS`.

Lukas Tenbrink 4 月之前
父节点
当前提交
f2bab45202
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/extension/gdextension_loader.h

+ 1 - 1
core/extension/gdextension_loader.h

@@ -35,7 +35,7 @@
 class GDExtension;
 
 class GDExtensionLoader : public RefCounted {
-	GDSOFTCLASS(GDExtensionLoader, GDExtensionLoader);
+	GDSOFTCLASS(GDExtensionLoader, RefCounted);
 
 public:
 	virtual Error open_library(const String &p_path) = 0;