]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Properly set to zero stuff returned by 'new'
[stockfish] / src / misc.cpp
index e03a0e2fa7302fbe4c1b4fa418a4b3be2fc8adbb..9a9d0dda4824fc0b5f6a5898ef36a53eaa525c30 100644 (file)
@@ -67,8 +67,6 @@ static const string AppTag  = "";
 //// Variables
 ////
 
-bool Chess960;
-
 uint64_t dbg_cnt0 = 0;
 uint64_t dbg_cnt1 = 0;
 
@@ -148,7 +146,7 @@ void dbg_print_mean(ofstream& logFile) {
 
 const string engine_name() {
 
-  const string cpu64(CpuHas64BitPath ? " 64bit" : "");
+  const string cpu64(CpuIs64Bit ? " 64bit" : "");
 
   if (!EngineVersion.empty())
       return AppName + " " + EngineVersion + cpu64;