diff --git a/ChangeLog b/ChangeLog index 9a8dbd2..774c300 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ -$Id: ChangeLog,v 1.118 2007/01/12 22:42:30 stpohle Exp $ +$Id: ChangeLog,v 1.119 2007/02/17 08:27:40 stpohle Exp $ -Version 0.11.7.1 (still in progress) +Version 0.11.7.1 ================ - Fixed some drawing issues with flying bombs. diff --git a/src/main.c b/src/main.c index 2bb4a9b..b1bb568 100644 --- a/src/main.c +++ b/src/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.35 2007/01/12 11:15:44 stpohle Exp $ */ +/* $Id: main.c,v 1.36 2007/02/17 08:27:41 stpohle Exp $ */ #include "basic.h" #include "bomberclone.h" @@ -28,11 +28,13 @@ main (int argc, char **argv) { int menuselect = 0; _menu *menu; + + printf ("Bomberclone version %s\n", VERSION); players = malloc (sizeof (_player) * MAX_PLAYERS); teams = malloc (sizeof (_team) * MAX_TEAMS); gfxengine_init (); - + if (SDL_Init (SDL_INIT_VIDEO| SDL_INIT_NOPARACHUTE) != 0) { d_printf ("Unable to init SDL: %s\n", SDL_GetError ()); return (1);