1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

few bugs fixed thanks to explicit bool constructor and clang.

explicit bool constructor has thus now been removed, as it served it's mission!
This commit is contained in:
Juan Linietsky
2017-08-05 21:43:10 -03:00
parent 76ce18c290
commit 37adf936ab
3 changed files with 3 additions and 2 deletions

View File

@@ -2798,7 +2798,7 @@ public:
r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
return 0;
}
*p_outputs[0] = subcall->call(VisualScriptLanguage::singleton->_subcall, p_inputs, input_args, r_error_str);
*p_outputs[0] = subcall->call(VisualScriptLanguage::singleton->_subcall, p_inputs, input_args, r_error);
return 0;
}
};