1
0
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:
Rémi Verschelde
2020-02-23 14:34:40 +01:00
committed by GitHub

View File

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