You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Merge pull request #36482 from Faless/debugger/fix_bp_cmp
Fix Breakpoint compare in new Debugger.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user