diff options
author | Subv <subv2112@gmail.com> | 2015-07-23 01:20:54 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-07-23 18:47:34 +0200 |
commit | 6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0 (patch) | |
tree | 5e8a1e33d8697550fc7a8eee76755be4bd65015a /src/citra_qt/debugger | |
parent | Merge pull request #968 from Subv/texture_filtering (diff) | |
download | yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.gz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.bz2 yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.lz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.xz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.zst yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.zip |
Diffstat (limited to 'src/citra_qt/debugger')
-rw-r--r-- | src/citra_qt/debugger/graphics_breakpoints.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/graphics_breakpoints.cpp b/src/citra_qt/debugger/graphics_breakpoints.cpp index 1da64f616..4606c01f2 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.cpp +++ b/src/citra_qt/debugger/graphics_breakpoints.cpp @@ -42,11 +42,14 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const case 0: { static const std::map<Pica::DebugContext::Event, QString> map = { - { Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded") }, - { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, + { Pica::DebugContext::Event::PicaCommandLoaded, tr("Pica command loaded") }, + { Pica::DebugContext::Event::PicaCommandProcessed, tr("Pica command processed") }, { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, - { Pica::DebugContext::Event::VertexLoaded, tr("Vertex loaded") } + { Pica::DebugContext::Event::VertexLoaded, tr("Vertex loaded") }, + { Pica::DebugContext::Event::IncomingDisplayTransfer, tr("Incoming display transfer") }, + { Pica::DebugContext::Event::GSPCommandProcessed, tr("GSP command processed") }, + { Pica::DebugContext::Event::BufferSwapped, tr("Buffers swapped") } }; DEBUG_ASSERT(map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); |