Skip to content

Commit

Permalink
Sirius 5.0
Browse files Browse the repository at this point in the history
Closes (#12)
  • Loading branch information
mcthouacbb authored Oct 27, 2023
1 parent 9609f32 commit fd9e71e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Sirius/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ if("${SIRIUS_EXE_EXTENSION}" STREQUAL "")
message("none")
set(SIRIUS_EXE_NAME "sirius")
else()
message("${SIRIUS_EXE_EXTENSION} bruh")
set(SIRIUS_EXE_NAME "sirius-${SIRIUS_EXE_EXTENSION}")
endif()

Expand Down
2 changes: 1 addition & 1 deletion Sirius/src/comm/cmdline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace comm

CmdLine::CmdLine()
{
std::cout << "Sirius v" << SIRIUS_VERSION_STRING << std::endl;
std::cout << "Sirius " << SIRIUS_VERSION_STRING << std::endl;

std::ifstream openings("res/gaviota_trim.pgn");
if (openings.is_open())
Expand Down
2 changes: 1 addition & 1 deletion Sirius/src/comm/uci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ UCI::Command UCI::getCommand(const std::string& command) const
void UCI::uciCommand() const
{
auto lock = lockStdout();
std::cout << "id name Sirius v" << SIRIUS_VERSION_STRING << std::endl;
std::cout << "id name Sirius " << SIRIUS_VERSION_STRING << std::endl;
std::cout << "id author AspectOfTheNoob" << std::endl;
std::cout << "option name Hash type spin default 64 min 1 max 2048" << std::endl;
// lol
Expand Down
2 changes: 1 addition & 1 deletion Sirius/src/sirius.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define SIRIUS_VERSION_MAJOR 4
#define SIRIUS_VERSION_MAJOR 5
#define SIRIUS_VERSION_MINOR 0

#define STRINGIFY2(x) #x
Expand Down

0 comments on commit fd9e71e

Please sign in to comment.