| 1671 | } |
| 1672 | |
| 1673 | static void winDebuggerLoopStep(void) |
| 1674 | { |
| 1675 | FCEUD_UpdateInput(); |
| 1676 | |
| 1677 | while(gtk_events_pending()) |
| 1678 | { |
| 1679 | gtk_main_iteration_do(FALSE); |
| 1680 | } |
| 1681 | |
| 1682 | if ( XBackBuf ) |
| 1683 | { |
| 1684 | BlitScreen(XBackBuf); |
| 1685 | } |
| 1686 | |
| 1687 | if ( breakpoint_hit ) |
| 1688 | { |
| 1689 | seekPC_AllDebugWindows(); |
| 1690 | breakpoint_hit = 0; |
| 1691 | } |
| 1692 | } |
| 1693 | |
| 1694 | //this code enters the debugger when a breakpoint was hit |
| 1695 | void FCEUD_DebugBreakpoint(int bp_num) |
no test coverage detected