mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 18:47:59 -05:00
Merge pull request #437 from Kingcom/DebugMode
Replace OnCpuStepped signal
This commit is contained in:
@ -235,7 +235,7 @@ void DisassemblerWidget::OnToggleStartStop()
|
||||
emu_thread.SetCpuRunning(!emu_thread.IsCpuRunning());
|
||||
}
|
||||
|
||||
void DisassemblerWidget::OnCPUStepped()
|
||||
void DisassemblerWidget::OnDebugModeEntered()
|
||||
{
|
||||
ARMword next_instr = Core::g_app_core->GetPC();
|
||||
|
||||
@ -252,6 +252,11 @@ void DisassemblerWidget::OnCPUStepped()
|
||||
disasm_ui.treeView->selectionModel()->setCurrentIndex(model_index, QItemSelectionModel::SelectCurrent | QItemSelectionModel::Rows);
|
||||
}
|
||||
|
||||
void DisassemblerWidget::OnDebugModeLeft()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
int DisassemblerWidget::SelectedRow()
|
||||
{
|
||||
QModelIndex index = disasm_ui.treeView->selectionModel()->currentIndex();
|
||||
|
Reference in New Issue
Block a user