Skip to content

Commit

Permalink
dont generate missing bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Aug 15, 2024
1 parent 0f3b84a commit 2c62f0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion codegen/src/ModifyGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 2c62f0b

Please sign in to comment.