summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderManager.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2015-07-08 07:17:28 +0200
committerTillmann Karras <tilkax@gmail.com>2015-07-08 07:17:28 +0200
commit2559a6f25c8b728aefe570ed1980c4d85b689828 (patch)
treef12e54c9e063e6aeaa48a53b653fb2ada0013d61 /Source/Core/VideoCommon/VertexLoaderManager.cpp
parentc54534ee3ba6c9f7de066b9de3588c533f91a5c4 (diff)
VertexLoader: avoid empty lines in perf-$pid.map
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderManager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp
index 46a0eeaab0..0099064ca5 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp
@@ -109,7 +109,8 @@ void AppendListToString(std::string *dest)
dest->reserve(dest->size() + total_size);
for (const entry& entry : entries)
{
- dest->append(entry.text);
+ *dest += entry.text;
+ *dest += '\n';
}
}