Browse Source

Missing space in shader compiler output message.

Missed out when reworking in 6904b38b13.
pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
12f9666321
  1. 4
      src/Shader.cpp

4
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;
}

Loading…
Cancel
Save