From 022a4bdd81332ce67d799be6a06afb42ae45ac2e Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 25 Dec 2017 12:27:32 +0000 Subject: [Build] Added examples and improved build for them. --- yage/core/glslprogram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yage/core') diff --git a/yage/core/glslprogram.cpp b/yage/core/glslprogram.cpp index c47de808..13abbba3 100644 --- a/yage/core/glslprogram.cpp +++ b/yage/core/glslprogram.cpp @@ -142,7 +142,7 @@ void GlslProgram::linkShaders() std::string error_log_str((const char *)&error_log[0]); - throw std::runtime_error("Could not link program : " + error_log_str); + throw std::runtime_error("Could not link program: " + error_log_str); } // detach shaders after successful link -- cgit