Fix #15717 - Update scroll panel when stepping with F7

This commit is contained in:
pancake 2019-12-30 13:06:34 +01:00
parent 7296864177
commit 265e0d1f66

View File

@ -7239,6 +7239,9 @@ repeat:
(void)r_core_cmd0 (core, cmd);
} else {
__panel_single_step_in (core);
if (__check_panel_type (cur, PANEL_CMD_DISASSEMBLY)) {
__set_panel_addr (core, cur, core->offset);
}
__set_refresh_all (core, false, false);
}
break;
@ -7248,6 +7251,9 @@ repeat:
(void)r_core_cmd0 (core, cmd);
} else {
__panel_single_step_over (core);
if (__check_panel_type (cur, PANEL_CMD_DISASSEMBLY)) {
__set_panel_addr (core, cur, core->offset);
}
__set_refresh_all (core, false, false);
}
break;