aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.h
diff options
context:
space:
mode:
authorFilippos Karapetis2010-05-19 07:25:06 +0000
committerFilippos Karapetis2010-05-19 07:25:06 +0000
commit852cb16c49aaca1891d25e420ddf1459efa55ae8 (patch)
tree6cd9788c74028aac189cf95addc52159a384992c /engines/sci/engine/vm.h
parentdb3fc7a89e5a450e82f0b4a5a3b724ad251c8d54 (diff)
downloadscummvm-rg350-852cb16c49aaca1891d25e420ddf1459efa55ae8.tar.gz
scummvm-rg350-852cb16c49aaca1891d25e420ddf1459efa55ae8.tar.bz2
scummvm-rg350-852cb16c49aaca1891d25e420ddf1459efa55ae8.zip
Moved the breakpoint information inside the DebugState struct
svn-id: r49092
Diffstat (limited to 'engines/sci/engine/vm.h')
-rw-r--r--engines/sci/engine/vm.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/engines/sci/engine/vm.h b/engines/sci/engine/vm.h
index 112646ddb6..8e40fed818 100644
--- a/engines/sci/engine/vm.h
+++ b/engines/sci/engine/vm.h
@@ -277,28 +277,6 @@ struct ScriptState {
*/
extern ScriptState scriptState;
-
-// These types are used both as identifiers and as elements of bitfields
-enum BreakpointType {
- /**
- * Break when selector is executed. data contains (char *) selector name
- * (in the format Object::Method)
- */
- BREAK_SELECTOR = 1,
-
- /**
- * Break when an exported function is called. data contains
- * script_no << 16 | export_no.
- */
- BREAK_EXPORT = 2
-};
-
-struct Breakpoint {
- BreakpointType type;
- uint32 address; ///< Breakpoints on exports
- Common::String name; ///< Breakpoints on selector names
-};
-
/**
* Set this to 1 to abort script execution immediately. Aborting will
* leave the debug exec stack intact.