diff --git a/src/WallpaperEngine/Render/Shaders/Compiler.cpp b/src/WallpaperEngine/Render/Shaders/Compiler.cpp index b7bad42..53d8faa 100644 --- a/src/WallpaperEngine/Render/Shaders/Compiler.cpp +++ b/src/WallpaperEngine/Render/Shaders/Compiler.cpp @@ -319,7 +319,7 @@ namespace WallpaperEngine::Render::Shaders this->ignoreSpaces (it); std::string name = this->extractName (it); BREAK_IF_ERROR this->ignoreSpaces (it); - std::string array = this->extractArray (it); BREAK_IF_ERROR + std::string array = this->extractArray (it, false); BREAK_IF_ERROR this->ignoreSpaces (it); this->expectSemicolon (it); BREAK_IF_ERROR this->ignoreSpaces (it); @@ -353,7 +353,7 @@ namespace WallpaperEngine::Render::Shaders this->ignoreSpaces (it); std::string name = this->extractName (it); BREAK_IF_ERROR this->ignoreSpaces (it); - std::string array = this->extractArray (it); BREAK_IF_ERROR + std::string array = this->extractArray (it, false); BREAK_IF_ERROR this->ignoreSpaces (it); this->expectSemicolon (it); BREAK_IF_ERROR