summaryrefslogtreecommitdiffstats
path: root/core/script_language.h
diff options
context:
space:
mode:
authoriwek7 <miwanczuk7@gmail.com>2019-07-29 20:09:22 +0200
committeriwek7 <miwanczuk7@gmail.com>2019-09-03 20:49:09 +0200
commit617797c47cac39830282b7ea85fc38eb2d242e19 (patch)
tree3a13d873fc96c1f7e02718269d55a0cc9234ad7a /core/script_language.h
parent750f8d4926edb14269d9f6a117c5a9fd4765373a (diff)
downloadredot-engine-617797c47cac39830282b7ea85fc38eb2d242e19.tar.gz
Adds skip-breakpoints feature
Diffstat (limited to 'core/script_language.h')
-rw-r--r--core/script_language.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_language.h b/core/script_language.h
index 1b4f1eb4cd..5c7e8bb36c 100644
--- a/core/script_language.h
+++ b/core/script_language.h
@@ -467,7 +467,7 @@ public:
void clear_breakpoints();
const Map<int, Set<StringName> > &get_breakpoints() const { return breakpoints; }
- virtual void debug(ScriptLanguage *p_script, bool p_can_continue = true) = 0;
+ virtual void debug(ScriptLanguage *p_script, bool p_can_continue = true, bool p_is_error_breakpoint = false) = 0;
virtual void idle_poll();
virtual void line_poll();