mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09: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:
parent
09a2de9916
commit
8280bb0de0
5 changed files with 37 additions and 0 deletions
|
|
@ -642,6 +642,11 @@ void GDTokenizerText::_advance() {
|
|||
str+=res;
|
||||
|
||||
} else {
|
||||
if (CharType(GETCHAR(i))=='\n') {
|
||||
line++;
|
||||
column=0;
|
||||
}
|
||||
|
||||
str+=CharType(GETCHAR(i));
|
||||
}
|
||||
i++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue