From a039d43d2edc94c125c5f79821c27f3327e06a20 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 21 Feb 2022 15:57:38 -0500 Subject: [PATCH] Fix a stupid typo in materialcompiler.cpp --- engine/renderer/src/materialcompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/renderer/src/materialcompiler.cpp b/engine/renderer/src/materialcompiler.cpp index 3538ccc..0993ae7 100755 --- a/engine/renderer/src/materialcompiler.cpp +++ b/engine/renderer/src/materialcompiler.cpp @@ -33,7 +33,7 @@ ShaderSource get_shader(const std::string& filename, bool skinned, bool cubemap) GFXPipeline* MaterialCompiler::create_static_pipeline(GFXGraphicsPipelineCreateInfo createInfo, bool positions_only, bool cubemap) { // take vertex src - const std::string vertex_path = fmt::format("{}.glsl", createInfo.shaders.vertex_src.as_path().string();); + const std::string vertex_path = fmt::format("{}.glsl", createInfo.shaders.vertex_src.as_path().string()); if (positions_only) createInfo.label += " (shadow)";