You've already forked godot
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:
@@ -642,6 +642,11 @@ void GDTokenizerText::_advance() {
|
||||
str+=res;
|
||||
|
||||
} else {
|
||||
if (CharType(GETCHAR(i))=='\n') {
|
||||
line++;
|
||||
column=0;
|
||||
}
|
||||
|
||||
str+=CharType(GETCHAR(i));
|
||||
}
|
||||
i++;
|
||||
|
||||
Reference in New Issue
Block a user