]> git.sesse.net Git - stockfish/commitdiff
Shrink engine UCI name
authorMarco Costalba <mcostalba@gmail.com>
Mon, 27 May 2013 15:42:52 +0000 (17:42 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Mon, 27 May 2013 15:43:38 +0000 (17:43 +0200)
Some GUI have problems with long names.

Reported by George Speight.

No functional change.

src/misc.cpp

index cad8e39d08d4ba6ba66f91c8cfc857d2eae3d219..2d14def3a289b73ec9e481cc1672b84528671946 100644 (file)
@@ -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 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"
 
   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
       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();
     << "Tord Romstad, Marco Costalba and Joona Kiiski";
 
   return s.str();