From 2c62f0b37e440145aeecd80f56b311bc909cc102 Mon Sep 17 00:00:00 2001 From: Cvolton Date: Thu, 15 Aug 2024 10:50:31 +0200 Subject: [PATCH] dont generate missing bindings --- codegen/src/ModifyGen.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codegen/src/ModifyGen.cpp b/codegen/src/ModifyGen.cpp index b4fe0f997..9c6ac22a2 100644 --- a/codegen/src/ModifyGen.cpp +++ b/codegen/src/ModifyGen.cpp @@ -145,7 +145,9 @@ std::string generateModifyHeader(Root const& root, ghc::filesystem::path const& std::string format_string; if (status == BindStatus::Missing) { - format_string = format_strings::apply_error; + //TODO: this breaks cceglview i think thats why its commented out + //format_string = format_strings::apply_error; + continue; } else if (status == BindStatus::Unbindable && fn->prototype.type == FunctionType::Normal) { if (is_cocos_class(c.name)) {