From 29a864de05c33fb2493bdbdc821809543214215c Mon Sep 17 00:00:00 2001 From: Peter Osterlund Date: Sun, 5 Apr 2020 16:29:58 +0200 Subject: [PATCH] Remove "64" and "POPCNT" information from Stockfish name This information does not really help the typical user and also gets included in the White/Black fields in the PGN header section. --- DroidFishApp/src/main/cpp/stockfish/misc.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DroidFishApp/src/main/cpp/stockfish/misc.cpp b/DroidFishApp/src/main/cpp/stockfish/misc.cpp index 95862eb..06d593d 100644 --- a/DroidFishApp/src/main/cpp/stockfish/misc.cpp +++ b/DroidFishApp/src/main/cpp/stockfish/misc.cpp @@ -142,9 +142,7 @@ const string engine_info(bool to_uci) { ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2); } - ss << (Is64Bit ? " 64" : "") - << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : "")) - << (to_uci ? "\nid author ": " by ") + ss << (to_uci ? "\nid author ": " by ") << "T. Romstad, M. Costalba, J. Kiiski, G. Linscott"; return ss.str();