1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

Fix Breakpoint compare in new Debugger.

Only used to keep the hashmap, but clearly bogus.
This commit is contained in:
Fabio Alessandrelli
2020-02-23 14:10:24 +01:00
parent 223c5ef8a3
commit f72905aa29

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