From abb40777bf7dbfd2f5250840f84b4c6965719f46 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Mon, 27 May 2013 17:42:52 +0200 Subject: [PATCH] Shrink engine UCI name Some GUI have problems with long names. Reported by George Speight. No functional change. --- src/misc.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/misc.cpp b/src/misc.cpp index cad8e39d..2d14def3 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -45,9 +45,6 @@ static const string Tag = ""; const string engine_info(bool to_uci) { const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"); - const string cpu64(Is64Bit ? " 64bit" : ""); - const string popcnt(HasPopCnt ? " SSE4.2" : ""); - string month, day, year; stringstream s, date(__DATE__); // From compiler, format is "Sep 21 2008" @@ -58,10 +55,12 @@ const string engine_info(bool to_uci) { date >> month >> day >> year; s << Tag << string(Tag.empty() ? "" : " ") << setfill('0') << setw(2) << day - << "-" << setw(2) << (1 + months.find(month) / 4) << "-" << year.substr(2); + << setw(2) << (1 + months.find(month) / 4) << year.substr(2); } - s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ") + s << (Is64Bit ? " 64" : "") + << (HasPopCnt ? " SSE4.2" : "") + << (to_uci ? "\nid author ": " by ") << "Tord Romstad, Marco Costalba and Joona Kiiski"; return s.str(); -- 2.39.2