X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc.cpp;h=9a9d0dda4824fc0b5f6a5898ef36a53eaa525c30;hb=141caf1d5b642bab826e2e8a7ab043b8c4928250;hp=d8b5b35d83fb93a5cbea8962ec7927d6e88cf4ce;hpb=726df58131dd6e6c54a53fa9e0fe0756bcfc203b;p=stockfish diff --git a/src/misc.cpp b/src/misc.cpp index d8b5b35d..9a9d0dda 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -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.8 beta 1"; +static const string EngineVersion = ""; static const string AppName = "Stockfish"; static const string AppTag = ""; @@ -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;