Browse Source

Allow skipping lines without error on memory tool (#621)

Leonardo 2 years ago
parent
commit
5845e8773d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      other/memory/Memory.hx

+ 2 - 0
other/memory/Memory.hx

@@ -892,6 +892,8 @@ class Memory {
 				if( v != null )
 					m.maxLines = Std.parseInt(v);
 				Sys.println(m.maxLines == 0 ? "Lines limit disabled" : m.maxLines + " maximum lines displayed");
+			case null:
+				Sys.println("");
 			default:
 				Sys.println("Unknown command " + cmd);
 			}