diff options
| author | flacs <tilkax@gmail.com> | 2015-10-23 07:51:40 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-10-23 07:51:40 +0200 |
| commit | ece2e91446c6a9a4ae1da3feb28d53138673f69e (patch) | |
| tree | ee0ec9138c9e52698afb74b03a5e8fa5a3edbf64 /Source/Core/VideoCommon/VertexLoaderBase.cpp | |
| parent | 5228758383df49f5f17e5fd64262f755b6d1c317 (diff) | |
| parent | 33784456a5d8d5801339b53ed43a2f7960393cd8 (diff) | |
Merge pull request #3193 from Tilka/swizzle
VertexLoaderX64: optimize 4444 color conversion
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderBase.cpp b/Source/Core/VideoCommon/VertexLoaderBase.cpp index 81e42da4e3..7db8c22b8a 100644 --- a/Source/Core/VideoCommon/VertexLoaderBase.cpp +++ b/Source/Core/VideoCommon/VertexLoaderBase.cpp @@ -150,9 +150,9 @@ public: else { ERROR_LOG(VIDEO, "Can't compare vertex loaders that expect different vertex formats!"); - ERROR_LOG(VIDEO, "a: m_VertexSize %d, m_native_components 0x%08x, stride %d\n", + ERROR_LOG(VIDEO, "a: m_VertexSize %d, m_native_components 0x%08x, stride %d", a->m_VertexSize, a->m_native_components, a->m_native_vtx_decl.stride); - ERROR_LOG(VIDEO, "b: m_VertexSize %d, m_native_components 0x%08x, stride %d\n", + ERROR_LOG(VIDEO, "b: m_VertexSize %d, m_native_components 0x%08x, stride %d", b->m_VertexSize, b->m_native_components, b->m_native_vtx_decl.stride); } } |
