Minor correction in error message

This commit is contained in:
Laurent Gomila 2012-04-15 18:09:06 +02:00
parent 19276a552e
commit c750698333

View File

@ -454,7 +454,7 @@ bool Shader::compile(const char* vertexShaderCode, const char* fragmentShaderCod
if (!isAvailable()) if (!isAvailable())
{ {
err() << "Failed to create a shader: your system doesn't support shaders " err() << "Failed to create a shader: your system doesn't support shaders "
<< "(you should test Shader::IsAvailable() before trying to use the Shader class)" << std::endl; << "(you should test Shader::isAvailable() before trying to use the Shader class)" << std::endl;
return false; return false;
} }