1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

more debugger fixes

-setting/clearing breakpoints during run-time now works
-multi-line strings resulted in wrong line numbers in bytecode, fixed
This commit is contained in:
Juan Linietsky
2015-08-04 20:17:13 -03:00
parent 09a2de9916
commit 8280bb0de0
5 changed files with 37 additions and 0 deletions

View File

@@ -642,6 +642,11 @@ void GDTokenizerText::_advance() {
str+=res;
} else {
if (CharType(GETCHAR(i))=='\n') {
line++;
column=0;
}
str+=CharType(GETCHAR(i));
}
i++;