]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Retire UCI_Chess960 option
[stockfish] / src / misc.cpp
index 2970ac3b49c30c6ceb0aeda94b95836919eab715..49b41b2f73eec3b35113d79f7cc033e05855f33e 100644 (file)
@@ -67,8 +67,6 @@ static const string AppTag  = "";
 //// Variables
 ////
 
-bool Chess960;
-
 uint64_t dbg_cnt0 = 0;
 uint64_t dbg_cnt1 = 0;
 
@@ -151,7 +149,7 @@ const string engine_name() {
   const string cpu64(CpuHas64BitPath ? " 64bit" : "");
 
   if (!EngineVersion.empty())
-      return AppName+ " " + EngineVersion + cpu64;
+      return AppName + " " + EngineVersion + cpu64;
 
   string date(__DATE__); // From compiler, format is "Sep 21 2008"
   string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
@@ -292,6 +290,8 @@ int Bioskey()
     }
 }
 
+#endif
+
 /// prefetch() preloads the given address in L1/L2 cache. This is a non
 /// blocking function and do not stalls the CPU waiting for data to be
 /// loaded from RAM, that can be very slow.
@@ -313,4 +313,3 @@ void prefetch(char* addr) {
 
 #endif
 
-#endif