You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix local variables not showing when breaking on final line
This commit is contained in:
@@ -95,7 +95,7 @@ void GDScriptFunction::debug_get_stack_member_state(int p_line, List<Pair<String
|
||||
int oc = 0;
|
||||
Map<StringName, _GDFKC> sdmap;
|
||||
for (const StackDebug &sd : stack_debug) {
|
||||
if (sd.line > p_line) {
|
||||
if (sd.line >= p_line) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user