diff --git a/game/board.h b/game/board.h index 109d62b..05232cb 100644 --- a/game/board.h +++ b/game/board.h @@ -11,7 +11,7 @@ typedef std::vector< unitType_c > vunitType_c; // Invalid value for the board square constexpr unitType_c square_invalid = std::numeric_limits::max(); -constexpr unitType_c square_empty = 32; // 32 is ascii empty +constexpr unitType_c square_empty = ' '; // Class to store simple data about a board class CBoard