diff options
| author | 2014-07-26 14:42:46 +0200 | |
|---|---|---|
| committer | 2014-08-12 13:47:30 +0200 | |
| commit | 76a586de4952df6d8dd9db9d97716c00690cebdd (patch) | |
| tree | ad6a954780faa4ab7908780e4ab605952b7e400b /src/citra_qt/debugger | |
| parent | Pica: Add float24 structure. (diff) | |
| download | yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.gz yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.xz yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.zip | |
Pica: Add command processor.
Diffstat (limited to 'src/citra_qt/debugger')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index 30b8b5dae..e98560a19 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -78,7 +78,7 @@ QVariant GPUCommandListModel::data(const QModelIndex& index, int role) const | |||
| 78 | // index refers to a specific command | 78 | // index refers to a specific command |
| 79 | const GraphicsDebugger::PicaCommandList& cmdlist = command_lists[item->parent->index].second; | 79 | const GraphicsDebugger::PicaCommandList& cmdlist = command_lists[item->parent->index].second; |
| 80 | const GraphicsDebugger::PicaCommand& cmd = cmdlist[item->index]; | 80 | const GraphicsDebugger::PicaCommand& cmd = cmdlist[item->index]; |
| 81 | const Pica::CommandHeader& header = cmd.GetHeader(); | 81 | const Pica::CommandProcessor::CommandHeader& header = cmd.GetHeader(); |
| 82 | 82 | ||
| 83 | if (role == Qt::DisplayRole) { | 83 | if (role == Qt::DisplayRole) { |
| 84 | QString content; | 84 | QString content; |