]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Properly set to zero stuff returned by 'new'
[stockfish] / src / misc.cpp
index 7715f98070618bd346f9b7514f368d20a557a4b9..9a9d0dda4824fc0b5f6a5898ef36a53eaa525c30 100644 (file)
@@ -58,7 +58,7 @@ using namespace std;
 /// Version number. If this is left empty, the current date (in the format
 /// YYMMDD) is used as a version number.
 
-static const string EngineVersion = "1.9";
+static const string EngineVersion = "";
 static const string AppName = "Stockfish";
 static const string AppTag  = "";
 
@@ -146,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;