Stepping
| 1150 | |
| 1151 | // Stepping |
| 1152 | void ClearTempBreakpoints () |
| 1153 | { |
| 1154 | for (int iBreakpoint = 0; iBreakpoint < MAX_BREAKPOINTS; iBreakpoint++) |
| 1155 | { |
| 1156 | Breakpoint_t *pBP = &g_aBreakpoints[iBreakpoint]; |
| 1157 | |
| 1158 | if (! _BreakpointValid( pBP )) |
| 1159 | continue; |
| 1160 | |
| 1161 | if (pBP->bHit && pBP->bTemp) |
| 1162 | _BWZ_RemoveOne(g_aBreakpoints, iBreakpoint, g_nBreakpoints); |
| 1163 | |
| 1164 | pBP->bHit = false; |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | static void DebugEnterStepping() |
| 1169 | { |
no test coverage detected