From 79a02a0c2efccfa09ec6a67c1a0aedc95a733e65 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 1 Aug 2020 16:43:05 +0200 Subject: [PATCH] no more empty lines on GL errors --- glhr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glhr.cpp b/glhr.cpp index d4548961..2665e632 100644 --- a/glhr.cpp +++ b/glhr.cpp @@ -55,7 +55,7 @@ EX } EX void glError(const char* GLcall, const char* file, const int line) { GLenum errCode = glGetError(); if(errCode!=GL_NO_ERROR) { - println(hlog, format("OPENGL ERROR #%i: in file %s on line %i :: %s\n",errCode,file, line, GLcall)); + println(hlog, format("OPENGL ERROR #%i: in file %s on line %i :: %s",errCode,file, line, GLcall)); } }