Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 2ee386d8fe1272c522a16791d769874b5d4ce49a)
+++ client/Client/main.cpp	(revision 2992b1a75dd6932f0ee9d020ad6ff0eb653f09c5)
@@ -454,6 +454,10 @@
             map<string, Game>::iterator it;
             int i=0;
+            ostringstream ossGame;
             for (it = mapGames.begin(); it != mapGames.end(); it++) {
-               al_draw_text(font, al_map_rgb(0, 255, 0), SCREEN_W*1/4-100, 120+i*15, ALLEGRO_ALIGN_LEFT, it->first.c_str());
+               ossGame << it->first << " (" << it->second.getNumPlayers() << " players)" << endl;
+               al_draw_text(font, al_map_rgb(0, 255, 0), SCREEN_W*1/4-100, 120+i*15, ALLEGRO_ALIGN_LEFT, ossGame.str().c_str());
+               ossGame.clear();
+               ossGame.str("");
                i++;
             }
