From c5ef2a5ee2a9cb5705bef25a5b3e1e4db6695071 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Tue, 16 Dec 2014 13:12:55 +0000 Subject: [PATCH] Use char literal instead of int for a space --- game/board.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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