Bläddra i källkod

Handle multi-line warp lanes that don't contain >

Steve Thielemann 3 år sedan
förälder
incheckning
583addd0d5
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2 1
      dispatchers.cpp

+ 2 - 1
dispatchers.cpp

@@ -644,7 +644,8 @@ void MoveDispatch::server_line(const std::string &line,
     // multiple lines possible here?  Yes.
     // [344 > 23328 > 2981 > 10465 > 14016 > 8979 > 1916 > 18734 > 5477 > 131 >
     // 27464 >] watch for <Move> it contains >
-    if ((line != "<Move>") && in(line, " > ")) {
+    // if ((line != "<Move>") && in(line, " > ")) {
+    if ((line != "<Move>") && (in(line, " > ") || !warp_lane.empty())) {      
       bool more = false;
       std::string work = line;