----------------------------------------------------------------------------
| 3092 | } |
| 3093 | //---------------------------------------------------------------------------- |
| 3094 | void ConsoleDebugger::debugStepBackCB(void) |
| 3095 | { |
| 3096 | if (FCEUI_EmulationPaused()) |
| 3097 | { |
| 3098 | FCEU_WRAPPER_LOCK(); |
| 3099 | FCEUD_TraceLoggerBackUpInstruction(); |
| 3100 | updateWindowData(QAsmView::UPDATE_ALL); |
| 3101 | hexEditorUpdateMemoryValues(true); |
| 3102 | hexEditorRequestUpdateAll(); |
| 3103 | lastBpIdx = BREAK_TYPE_STEP; |
| 3104 | FCEU_WRAPPER_UNLOCK(); |
| 3105 | } |
| 3106 | } |
| 3107 | //---------------------------------------------------------------------------- |
| 3108 | void ConsoleDebugger::debugRunToCursorCB(void) |
| 3109 | { |
nothing calls this directly
no test coverage detected