Beispiel #1
0
        /// <summary>
        /// Removes the breakpoint from the code
        /// </summary>
        public void Disable()
        {
            if (enabled)
            {
                APIIntermediate.RemoveInterrupt(Owner.Handle, Address, originalInstruction);
            }

            enabled = false;
        }