diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-07-26 14:42:46 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-08-12 13:47:30 +0200 |
commit | 76a586de4952df6d8dd9db9d97716c00690cebdd (patch) | |
tree | ad6a954780faa4ab7908780e4ab605952b7e400b /src/citra_qt/debugger/graphics_cmdlists.cpp | |
parent | Pica: Add float24 structure. (diff) | |
download | yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.gz yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.bz2 yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.lz yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.xz yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.tar.zst yuzu-76a586de4952df6d8dd9db9d97716c00690cebdd.zip |
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
-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 // index refers to a specific command const GraphicsDebugger::PicaCommandList& cmdlist = command_lists[item->parent->index].second; const GraphicsDebugger::PicaCommand& cmd = cmdlist[item->index]; - const Pica::CommandHeader& header = cmd.GetHeader(); + const Pica::CommandProcessor::CommandHeader& header = cmd.GetHeader(); if (role == Qt::DisplayRole) { QString content; |