MCPcopy Create free account
hub / github.com/TASEmulators/fceux / UpdateBreakpointsCaption

Function UpdateBreakpointsCaption

src/drivers/win/debugger.cpp:974–984  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

972}
973
974void UpdateBreakpointsCaption()
975{
976 char str[32];
977 // calculate the number of enabled breakpoints
978 int tmp = 0;
979 for (int i = 0; i < numWPs; i++)
980 if (watchpoint[i].flags & WP_E)
981 tmp++;
982 sprintf(str, "Breakpoints %02X of %02X", tmp, numWPs);
983 SetDlgItemText(hDebug, IDC_DEBUGGER_BREAKPOINTS, str);
984}
985
986void UpdateDebugger(bool jump_to_pc)
987{

Callers 3

UpdateDebuggerFunction · 0.85
EnableBreakFunction · 0.85
DeleteBreakFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected