From 05aa17ae649a14da95ec91935839e9a483ee98fc Mon Sep 17 00:00:00 2001
From: Francesco Bariatti <francesco.bariatti@insa-rennes.fr>
Date: Tue, 20 Oct 2015 12:12:14 +0200
Subject: [PATCH] Switched cross and circle

---
 src/game/morpion.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/game/morpion.hpp b/src/game/morpion.hpp
index c7305e9..b18d826 100644
--- a/src/game/morpion.hpp
+++ b/src/game/morpion.hpp
@@ -50,8 +50,8 @@ namespace game
 			inline bool has_won(uint16_t bitboard); //Check if the player whose bitboard was passed as a param has won
 			inline bool get(uint16_t bitboard, uint8_t i, uint8_t j) const; //Get a case of the board
 
-			const uint8_t CROSS = 1;
-			const uint8_t CIRCLE = 0;
+			const uint8_t CROSS = 0;
+			const uint8_t CIRCLE = 1;
 
 			morpion_state state;
 			
-- 
GitLab