Merge pull request #58201 from V-Sekai/debugger_locals

This commit is contained in:
Rémi Verschelde 2022-03-04 14:50:56 +01:00 committed by GitHub
commit e133adeb8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}