]> git.sesse.net Git - stockfish/blobdiff - src/book.cpp
Rename getters functions removing 'get_' prefix
[stockfish] / src / book.cpp
index 243583ff18276000a7c5050f0a54ffe330ff0bff..494c9c1121cfca0af4410ab249d7bd1c0b5e6456 100644 (file)
@@ -28,6 +28,7 @@
 #include <iostream>
 
 #include "book.h"
+#include "misc.h"
 #include "movegen.h"
 
 using namespace std;
@@ -348,7 +349,7 @@ namespace {
 /// Book c'tor. Make random number generation less deterministic, for book moves
 Book::Book() : bookSize(0) {
 
-  for (int i = abs(get_system_time() % 10000); i > 0; i--)
+  for (int i = abs(system_time() % 10000); i > 0; i--)
       RKiss.rand<unsigned>();
 }