mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
Merge pull request #36482 from Faless/debugger/fix_bp_cmp
Fix Breakpoint compare in new Debugger.
This commit is contained in:
commit
a920f9727a
@ -59,7 +59,7 @@ private:
|
||||
|
||||
bool operator<(const Breakpoint &p_b) const {
|
||||
if (line == p_b.line)
|
||||
return line < p_b.line;
|
||||
return source < p_b.source;
|
||||
return line < p_b.line;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user