Forgot to save all files..

This commit is contained in:
Lynix
2017-01-06 16:38:52 +01:00
parent f0a7430d34
commit 8a68df4c56
3 changed files with 6 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ namespace Nz { namespace ShaderBuilder
std::shared_ptr<ShaderAst::Variable> BuiltinBuilder::operator()(ShaderAst::BuiltinEntry builtin) const
{
ShaderAst::ExpressionType exprType = ShaderAst::ExpressionType::None;
ShaderAst::ExpressionType exprType = ShaderAst::ExpressionType::Void;
switch (builtin)
{
@@ -37,7 +37,7 @@ namespace Nz { namespace ShaderBuilder
break;
}
NazaraAssert(exprType != ShaderAst::ExpressionType::None, "Unhandled builtin");
NazaraAssert(exprType != ShaderAst::ExpressionType::Void, "Unhandled builtin");
return std::make_shared<ShaderAst::BuiltinVariable>(builtin, exprType);
}