summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-25 11:16:21 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-07 21:46:30 +0200
commit2c98275b5196fcd1c0c479a3a357a44fce324e07 (patch)
tree0747bd667536fe887b844f92c4c1c6cad0613f8b /src/citra_qt
parentShader Debugger: Fix only first vertex attribute being loaded (diff)
downloadyuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar.gz
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar.bz2
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar.lz
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar.xz
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.tar.zst
yuzu-2c98275b5196fcd1c0c479a3a357a44fce324e07.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/debugger/graphics_vertex_shader.cpp7
-rw-r--r--src/citra_qt/debugger/graphics_vertex_shader.h5
2 files changed, 2 insertions, 10 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics_vertex_shader.cpp
index 831ead51a..64a3569d4 100644
--- a/src/citra_qt/debugger/graphics_vertex_shader.cpp
+++ b/src/citra_qt/debugger/graphics_vertex_shader.cpp
@@ -361,9 +361,6 @@ GraphicsVertexShaderWidget::GraphicsVertexShaderWidget(std::shared_ptr< Pica::De
cycle_index = new QSpinBox;
- connect(this, SIGNAL(SelectCommand(const QModelIndex&, QItemSelectionModel::SelectionFlags)),
- binary_list->selectionModel(), SLOT(select(const QModelIndex&, QItemSelectionModel::SelectionFlags)));
-
connect(dump_shader, SIGNAL(clicked()), this, SLOT(DumpShader()));
connect(cycle_index, SIGNAL(valueChanged(int)), this, SLOT(OnCycleIndexChanged(int)));
@@ -550,7 +547,7 @@ void GraphicsVertexShaderWidget::OnCycleIndexChanged(int index) {
instruction_description->setText(text);
// Scroll to current instruction
- const QModelIndex& instr_index = model->index(record.instruction_offset, 0);
- emit SelectCommand(instr_index, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
+ QModelIndex instr_index = model->index(record.instruction_offset, 0);
+ binary_list->selectionModel()->select(instr_index, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
binary_list->scrollTo(instr_index, QAbstractItemView::EnsureVisible);
}
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.h b/src/citra_qt/debugger/graphics_vertex_shader.h
index d4e93103f..0bf1652fc 100644
--- a/src/citra_qt/debugger/graphics_vertex_shader.h
+++ b/src/citra_qt/debugger/graphics_vertex_shader.h
@@ -60,11 +60,6 @@ private slots:
*/
void Reload(bool replace_vertex_data = false, void* vertex_data = nullptr);
-
-signals:
- // Call this to change the current command selection in the disassembly view
- void SelectCommand(const QModelIndex&, QItemSelectionModel::SelectionFlags);
-
private:
QLabel* instruction_description;
QTreeView* binary_list;