diff options
| author | 2015-08-19 05:51:12 -0300 | |
|---|---|---|
| committer | 2015-09-07 16:46:29 -0300 | |
| commit | c1beb2ce2041c078674fb0cacafbccb4196cc3bc (patch) | |
| tree | 89882ff65b6b7d465852e34d2c5673cfd16a9b1f /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Shader Debugger: Improve space efficiency of the layout (diff) | |
| download | yuzu-c1beb2ce2041c078674fb0cacafbccb4196cc3bc.tar.gz yuzu-c1beb2ce2041c078674fb0cacafbccb4196cc3bc.tar.xz yuzu-c1beb2ce2041c078674fb0cacafbccb4196cc3bc.zip | |
Shader Debugger: Fix freeze when double-clicking shader disassembly
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) { |