diff options
Diffstat (limited to 'graphics.go')
-rw-r--r-- | graphics.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics.go b/graphics.go index 66b8274..0aacdb7 100644 --- a/graphics.go +++ b/graphics.go @@ -147,7 +147,7 @@ func compileShader(source string, shaderType uint32) (uint32, error) { log := strings.Repeat("\x00", int(logLength+1)) gl.GetShaderInfoLog(shader, logLength, nil, gl.Str(log)) - return 0, fmt.Errorf("failed to compile %v: %v", source, log) + return 0, fmt.Errorf("Failed to compile %v: %v", source, log) } return shader, nil |