diff options
| author | 2015-09-07 16:54:45 -0300 | |
|---|---|---|
| committer | 2015-09-07 16:54:45 -0300 | |
| commit | 87a2fd8b3fdc0931cce95300cd85c5ee3ea0382c (patch) | |
| tree | 7380029505ac8c21ab77aecb9ce3b9145b80705a /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Merge pull request #1117 from yuriks/fix-glad-build (diff) | |
| parent | Shader Debugger: Allow editing of input vertex data (diff) | |
| download | yuzu-87a2fd8b3fdc0931cce95300cd85c5ee3ea0382c.tar.gz yuzu-87a2fd8b3fdc0931cce95300cd85c5ee3ea0382c.tar.xz yuzu-87a2fd8b3fdc0931cce95300cd85c5ee3ea0382c.zip | |
Merge pull request #1052 from yuriks/vertex-disasm
Shader Debugger Improvements
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 025434687..fa32d24b5 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -359,7 +359,7 @@ void GPUCommandListWidget::CopyAllToClipboard() { | |||
| 359 | QClipboard* clipboard = QApplication::clipboard(); | 359 | QClipboard* clipboard = QApplication::clipboard(); |
| 360 | QString text; | 360 | QString text; |
| 361 | 361 | ||
| 362 | QAbstractItemModel* model = static_cast<QAbstractListModel*>(list_widget->model()); | 362 | QAbstractItemModel* model = static_cast<QAbstractItemModel*>(list_widget->model()); |
| 363 | 363 | ||
| 364 | for (int row = 0; row < model->rowCount({}); ++row) { | 364 | for (int row = 0; row < model->rowCount({}); ++row) { |
| 365 | for (int col = 0; col < model->columnCount({}); ++col) { | 365 | for (int col = 0; col < model->columnCount({}); ++col) { |