Fix typo in enum

This commit is contained in:
Jérôme Leclercq
2021-01-14 21:56:55 +01:00
parent 4d63d6e022
commit a9f2e05b57
8 changed files with 12 additions and 11 deletions

View File

@@ -420,7 +420,7 @@ namespace Nz
switch (node.op)
{
case ShaderNodes::BinaryType::Add: Append(" + "); break;
case ShaderNodes::BinaryType::Substract: Append(" - "); break;
case ShaderNodes::BinaryType::Subtract: Append(" - "); break;
case ShaderNodes::BinaryType::Multiply: Append(" * "); break;
case ShaderNodes::BinaryType::Divide: Append(" / "); break;