diff options
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderManager.cpp | 3 |
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'; } } |
