Преглед изворни кода

Fix Breakpoint compare in new Debugger.

Only used to keep the hashmap, but clearly bogus.
Fabio Alessandrelli пре 5 година
родитељ
комит
f72905aa29
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      editor/debugger/editor_debugger_node.h

+ 1 - 1
editor/debugger/editor_debugger_node.h

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