summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexShaderManager.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-11-02 01:19:00 +0000
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-11-02 02:09:33 +0000
commitc9e6b05ce90714d4be1093d4d3d3ed33013d5b06 (patch)
treef5a2d8f23a7b6aa2758c53b12f2bc4bda501733c /Source/Core/VideoCommon/VertexShaderManager.cpp
parent146ee6de91ecb52af86f0056a63b4949b0dbd1b5 (diff)
Core: Remove double newlines at the end of *_LOG messages.
Diffstat (limited to 'Source/Core/VideoCommon/VertexShaderManager.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexShaderManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexShaderManager.cpp b/Source/Core/VideoCommon/VertexShaderManager.cpp
index fdc6f8cd8a..aa7ea1c2a6 100644
--- a/Source/Core/VideoCommon/VertexShaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexShaderManager.cpp
@@ -540,8 +540,8 @@ void VertexShaderManager::SetConstants()
ERROR_LOG(VIDEO, "Unknown projection type: %d", xfmem.projection.type);
}
- PRIM_LOG("Projection: %f %f %f %f %f %f\n", rawProjection[0], rawProjection[1],
- rawProjection[2], rawProjection[3], rawProjection[4], rawProjection[5]);
+ PRIM_LOG("Projection: %f %f %f %f %f %f", rawProjection[0], rawProjection[1], rawProjection[2],
+ rawProjection[3], rawProjection[4], rawProjection[5]);
if (g_ActiveConfig.bFreeLook && xfmem.projection.type == GX_PERSPECTIVE)
{