Index: client/.gitignore
===================================================================
--- client/.gitignore	(revision 3ff2bd7ef8b47dfbc5af4481f3f44b76965c8f8f)
+++ client/.gitignore	(revision 2e63b644d7d876674a2522c3ffba59c328a3ac4b)
@@ -8,2 +8,3 @@
 allegro.log
 client.log
+*.o
Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 3ff2bd7ef8b47dfbc5af4481f3f44b76965c8f8f)
+++ client/Client/main.cpp	(revision 2e63b644d7d876674a2522c3ffba59c328a3ac4b)
@@ -23,4 +23,5 @@
 #include <map>
 #include <vector>
+#include <stdexcept>
 
 #include <allegro5/allegro.h>
@@ -880,6 +881,12 @@
                cout << "Received a JOIN_GAME_SUCCESS message" << endl;
 
-               string gameName(msg.buffer);         
-               game = new Game(gameName, "../../data/map.txt");
+               string gameName(msg.buffer);
+
+               #if defined WINDOWS
+                  game = new Game(gameName, "../../data/map.txt");
+               #elif defined LINUX
+                  game = new Game(gameName, "../data/map.txt");
+               #endif
+
                cout << "Game name: " << gameName << endl;
 
Index: client/makefile
===================================================================
--- client/makefile	(revision 3ff2bd7ef8b47dfbc5af4481f3f44b76965c8f8f)
+++ client/makefile	(revision 2e63b644d7d876674a2522c3ffba59c328a3ac4b)
@@ -3,5 +3,5 @@
 FLAGS = $(LIB_FLAGS)
 COMMON_PATH = ../common
-DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
+DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o GameSummary.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
 
 gameClient : Client/main.cpp $(DEPENDENCIES)
@@ -29,4 +29,7 @@
 	$(CC) -c -o $@ $? $(FLAGS)
 
+GameSummary.o : $(COMMON_PATH)/GameSummary.cpp
+	$(CC) -c -o $@ $? $(FLAGS)
+
 %.o : Client/%.cpp
 	$(CC) -c -o $@ $? $(FLAGS)
