RemoveBreakPoint() public method

Removes a breakpoint in an xbox title.
public RemoveBreakPoint ( uint address ) : void
address uint Address where you would like to remove a breakpoint.
return void
Exemplo n.º 1
0
 static void SetBreakpointOff(Xbox xbox)
 {
     xbox.RemoveBreakPoint(k_breakpoint_address);
     xbox.Continue();
 }
Exemplo n.º 2
0
		static void SetBreakpointOff(Xbox xbox)
		{
			xbox.RemoveBreakPoint(k_breakpoint_address);
			xbox.Continue();
		}