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; }