rsx: better naming for draw calls

This commit is contained in:
Vincent Lejeune 2015-11-09 23:57:35 +01:00
parent b238107a99
commit b5add0f027
3 changed files with 7 additions and 5 deletions

View file

@ -527,7 +527,7 @@ void RSXDebugger::GetMemory()
command_dump.close();
for (u32 i = 0;i < frame_debug.draw_calls.size(); i++)
m_list_captured_draw_calls->InsertItem(0, std::to_string(frame_debug.draw_calls.size() - i - 1));
m_list_captured_draw_calls->InsertItem(i, frame_debug.draw_calls[i].name);
}