From e18f72578ec9fbec7c333ad8aa0ec5c4ef639906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Fri, 18 Jun 2021 09:11:33 +0200 Subject: [PATCH] fixing shaders throw --- sources/Component/Shaders/ShaderComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Component/Shaders/ShaderComponent.cpp b/sources/Component/Shaders/ShaderComponent.cpp index ec5fb7ab..26847905 100644 --- a/sources/Component/Shaders/ShaderComponent.cpp +++ b/sources/Component/Shaders/ShaderComponent.cpp @@ -25,7 +25,7 @@ namespace BBM const WAL::Callback &onFixedUpdate, bool lonely) : WAL::Component(entity), - shader(vertexFilePath, fragmentFilePath, lonely), + shader(vertexPath, fragmentPath, lonely), fragmentFilePath(fragmentPath), vertexFilePath(vertexPath), update(onFixedUpdate)