Merge pull request #7930 from tagcup/missing_fixme_comments

Added missing FIXMEs in PR #7878

[ci skip]
This commit is contained in:
Rémi Verschelde
2017-03-02 23:32:48 +01:00
committed by GitHub

View File

@@ -329,7 +329,7 @@ PropertyInfo VisualScriptBuiltinFunc::get_input_value_port_info(int p_idx) const
case LOGIC_CLAMP: {
if (p_idx==0)
return PropertyInfo(Variant::REAL,"a");
else if (p_idx==0) // is it ok to test p_idx == 0 twice?
else if (p_idx==0) // FIXME: is it ok to test p_idx == 0 twice?
return PropertyInfo(Variant::REAL,"min");
else
return PropertyInfo(Variant::REAL,"max");