AirsoftTimer software based on mbed

Dependencies:   mbed TextLCD keypad

Revision:
14:e0bfee0a5e66
Parent:
13:ece97a1108cc
Child:
17:19dbb1dbb640
--- a/Airsofttimer.cpp	Sat May 23 17:15:42 2015 +0000
+++ b/Airsofttimer.cpp	Sat May 23 17:48:03 2015 +0000
@@ -36,7 +36,7 @@
     while(true){
         // first we need to select a game from the available games list
         int game_number = select_game();
-        Game* game = GameFactory::create_game(board, game_number);
+        Game* game = GameFactory::create(board, game_number);
         game->setup();
         game->run();
         delete game;