Minor compilation fixes

This commit is contained in:
brunoherbelin
2020-10-12 16:41:34 +02:00
parent c674fa0897
commit 102413c7f4
2 changed files with 4 additions and 1 deletions

View File

@@ -190,6 +190,9 @@ void ImGuiVisitor::visit(Shader &n)
case Shader::BLEND_LAYER_SUBSTRACT:
oss<<"Subtract";
break;
case Shader::BLEND_CUSTOM:
oss<<"Custom";
break;
}
Action::manager().store(oss.str(), n.id());
}