Shader/IndexRemapperVisitor: Fix small issue

This commit is contained in:
SirLynix 2022-04-23 12:15:23 +02:00
parent 947cc96923
commit 1fc226dd7e
1 changed files with 2 additions and 0 deletions

View File

@ -260,5 +260,7 @@ namespace Nz::ShaderAst
uniformType.containedType.structIndex = Retrieve(m_context->newStructIndices, std::get<UniformType>(exprType).containedType.structIndex);
return uniformType;
}
else
return exprType;
}
}