diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-02 05:52:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-02 05:52:27 +0300 |
commit | 2f3a3d08b0ba71972e20ae639a2077e9d4d17b94 (patch) | |
tree | faa0795346b3ac5788b08b24d3b1ca60e737ee69 /src | |
parent | 93257ccd9617dbc37784076d54c80c915722397d (diff) | |
download | plus-2f3a3d08b0ba71972e20ae639a2077e9d4d17b94.tar.gz plus-2f3a3d08b0ba71972e20ae639a2077e9d4d17b94.tar.bz2 plus-2f3a3d08b0ba71972e20ae639a2077e9d4d17b94.tar.xz plus-2f3a3d08b0ba71972e20ae639a2077e9d4d17b94.zip |
Bit improve opengl dumper.
Diffstat (limited to 'src')
-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 |