From a124271b7e5023c560d0899ad00ef912573da1e7 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Wed, 10 May 2023 20:34:09 +0200 Subject: [PATCH] Changed shader path lookup --- base/vulkanexamplebase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index 143ae8b7..c48ab61a 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -191,7 +191,7 @@ void VulkanExampleBase::destroyCommandBuffers() std::string VulkanExampleBase::getShadersPath() const { - return getAssetPath() + "shaders/" + shaderDir + "/"; + return getShaderBasePath() + shaderDir + "/"; } void VulkanExampleBase::createPipelineCache()