From: Marco Costalba Date: Wed, 17 Jun 2009 06:59:09 +0000 (+0200) Subject: Give proper credit to Joona X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=8225fdd5bb6f74172ba0307d7db12c5ce8416eea Give proper credit to Joona Stockfish would not be as where is now without his contributions. Signed-off-by: Marco Costalba --- diff --git a/src/main.cpp b/src/main.cpp index fc970a0e..94ee076b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -75,8 +75,8 @@ int main(int argc, char *argv[]) { } // Print copyright notice - cout << engine_name() << ". Copyright (C) " - << "2004-2009 Tord Romstad, Marco Costalba. " << endl; + cout << engine_name() + << ". By Tord Romstad, Marco Costalba, Joona Kiiski." << endl; if (CpuHasPOPCNT) cout << "Good! CPU has hardware POPCNT. We will use it." << endl; diff --git a/src/uci.cpp b/src/uci.cpp index b3af1b60..0a1de312 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -117,7 +117,7 @@ namespace { if (token == "uci") { cout << "id name " << engine_name() - << "\nid author Tord Romstad, Marco Costalba\n"; + << "\nid author Tord Romstad, Marco Costalba, Joona Kiiski\n"; print_uci_options(); cout << "uciok" << endl; }