mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
VertexLoaderManager: Return debug strings by value
This also renames AppendListToString to VertexLoadersToString.
This commit is contained in:
@ -68,8 +68,7 @@ std::string Statistics::ToString()
|
||||
str += StringFromFormat("Uniform streamed: %i kB\n", stats.thisFrame.bytesUniformStreamed / 1024);
|
||||
str += StringFromFormat("Vertex Loaders: %i\n", stats.numVertexLoaders);
|
||||
|
||||
std::string vertex_list;
|
||||
VertexLoaderManager::AppendListToString(&vertex_list);
|
||||
std::string vertex_list = VertexLoaderManager::VertexLoadersToString();
|
||||
|
||||
// TODO : at some point text1 just becomes too huge and overflows, we can't even read the added
|
||||
// stuff
|
||||
|
Reference in New Issue
Block a user