Skip to content

Commit

Permalink
Fixed|libgui|GLShader: Create private instance
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 22, 2013
1 parent c3bfec2 commit 574c83a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libgui/src/glshader.cpp
Expand Up @@ -62,7 +62,7 @@ DENG2_PIMPL(GLShader)
GLShader::GLShader() : d(new Instance(this))
{}

GLShader::GLShader(Type shaderType, IByteArray const &source)
GLShader::GLShader(Type shaderType, IByteArray const &source) : d(new Instance(this))
{
compile(shaderType, source);
}
Expand Down

0 comments on commit 574c83a

Please sign in to comment.