Fix #562, replace ?d. by aod

This commit is contained in:
Maijin 2018-07-03 20:15:20 -04:00
parent 9309486770
commit 9c6a103525

View File

@ -202,7 +202,7 @@ void SidebarWidget::fillOffsetInfo(QString off)
qhelpers::adjustColumns(ui->offsetTreeWidget, 0);
// Add opcode description
QStringList description = Core()->cmd("?d. @ " + off).split(": ");
QStringList description = Core()->cmd("aod @ " + off).split(": ");
if (description.length() >= 2) {
ui->opcodeDescText->setPlainText("# " + description[0] + ":\n" + description[1]);
}