summaryrefslogtreecommitdiff
path: root/modules/mono
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 /modules/mono
parent750f8d4926edb14269d9f6a117c5a9fd4765373a (diff)
Adds skip-breakpoints feature
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/csharp_script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp
index 4c9dd9c1a9..e14e919f92 100644
--- a/modules/mono/csharp_script.cpp
+++ b/modules/mono/csharp_script.cpp
@@ -1101,7 +1101,7 @@ bool CSharpLanguage::debug_break_parse(const String &p_file, int p_line, const S
_debug_parse_err_line = p_line;
_debug_parse_err_file = p_file;
_debug_error = p_error;
- ScriptDebugger::get_singleton()->debug(this, false);
+ ScriptDebugger::get_singleton()->debug(this, false, true);
return true;
} else {
return false;