diff --git a/src/Shader.cpp b/src/Shader.cpp index 4b6ee9c1b..0add38d3a 100644 --- a/src/Shader.cpp +++ b/src/Shader.cpp @@ -163,7 +163,7 @@ bool Shader::compile() { Error out; out.setFlag(Debug::NewLineAtTheEnd, false); out.setFlag(Debug::SpaceAfterEachValue, false); - out << "Shader:" << shaderName(_type) + out << "Shader: " << shaderName(_type) << " shader failed to compile with the following message:\n" << message; @@ -172,7 +172,7 @@ bool Shader::compile() { Error out; out.setFlag(Debug::NewLineAtTheEnd, false); out.setFlag(Debug::SpaceAfterEachValue, false); - out << "Shader:" << shaderName(_type) + out << "Shader: " << shaderName(_type) << " shader was successfully compiled with the following message:\n" << message; }