little fixes...

origin
stpohle 19 years ago
parent 2c8b6618df
commit ebae366c09

@ -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. - Fixed some drawing issues with flying bombs.

@ -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 "basic.h"
#include "bomberclone.h" #include "bomberclone.h"
@ -28,11 +28,13 @@ main (int argc, char **argv)
{ {
int menuselect = 0; int menuselect = 0;
_menu *menu; _menu *menu;
printf ("Bomberclone version %s\n", VERSION);
players = malloc (sizeof (_player) * MAX_PLAYERS); players = malloc (sizeof (_player) * MAX_PLAYERS);
teams = malloc (sizeof (_team) * MAX_TEAMS); teams = malloc (sizeof (_team) * MAX_TEAMS);
gfxengine_init (); gfxengine_init ();
if (SDL_Init (SDL_INIT_VIDEO| SDL_INIT_NOPARACHUTE) != 0) { if (SDL_Init (SDL_INIT_VIDEO| SDL_INIT_NOPARACHUTE) != 0) {
d_printf ("Unable to init SDL: %s\n", SDL_GetError ()); d_printf ("Unable to init SDL: %s\n", SDL_GetError ());
return (1); return (1);

Loading…
Cancel
Save