diff options
-rw-r--r-- | src/openglgraphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index 14d525163..242588473 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -1365,10 +1365,10 @@ void OpenGLGraphics::dumpSettings() glGetIntegerv(f, &test[0]); if (test[0] || test[1] || test[2] || test[3]) { - logger->log("%d = %d, %d, %d, %d", f, test[0], test[1], test[2], test[3]); + logger->log("\n%d = %d, %d, %d, %d", f, + test[0], test[1], test[2], test[3]); } } - logger->log("end opengl dump\n\n"); } #endif // USE_OPENGL |