Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 033c78b9414b91d13c948e293bca040feaf7fdfd)
+++ client/Client/main.cpp	(revision 00659628fd4d35e6abb9a7c02f5a9942fff3c3a7)
@@ -149,6 +149,5 @@
 string alertMessage;
 
-int main(int argc, char **argv)
-{
+int main(int argc, char **argv) {
    ALLEGRO_DISPLAY *display = NULL;
    ALLEGRO_EVENT_QUEUE *event_queue = NULL;
@@ -207,10 +206,10 @@
    }
  
-   if(!al_install_keyboard()) {
+   if (!al_install_keyboard()) {
       fprintf(stderr, "failed to initialize the keyboard!\n");
       return -1;
    }
 
-    if(!al_install_mouse()) {
+    if (!al_install_mouse()) {
       fprintf(stderr, "failed to initialize the mouse!\n");
       return -1;
@@ -218,5 +217,5 @@
  
    timer = al_create_timer(1.0 / FPS);
-   if(!timer) {
+   if (!timer) {
       fprintf(stderr, "failed to create timer!\n");
       return -1;
@@ -230,5 +229,5 @@
    }
    display = al_create_display(SCREEN_W, SCREEN_H);
-   if(!display) {
+   if (!display) {
       fprintf(stderr, "failed to create display!\n");
       al_destroy_timer(timer);
@@ -244,5 +243,5 @@
  
    event_queue = al_create_event_queue();
-   if(!event_queue) {
+   if (!event_queue) {
       fprintf(stderr, "failed to create event_queue!\n");
       al_destroy_display(display);
