From 74221c7f99a849ca351f5bb8d429bb5cc1eca7fa Mon Sep 17 00:00:00 2001 From: stpohle Date: Thu, 12 Jun 2003 20:52:43 +0000 Subject: [PATCH] Last Cleanups --- ChangeLog | 6 ++++++ src/game.c | 7 +------ src/network.c | 6 +++--- src/single.c | 6 +++--- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 39e9dfd..eb448c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,13 @@ +Version 0.9.9 +============= +2003-06-12 - PowerUps will be painted diffrent now. Depend on what it is. +- Chat Input Box won't be deleted if a game is over or + is going to start + - New Font Drawing enginge, so we can draw in with diffrent fonts and colors. diff --git a/src/game.c b/src/game.c index 1a272b9..e3d6e91 100644 --- a/src/game.c +++ b/src/game.c @@ -138,12 +138,7 @@ game_loop () draw_field (); if (GT_MP_PTP) net_game_fillsockaddr (); - if (strcmp(VERSION,"0.9.9") ) { - menu_displaytext ("Error", " Unauthorized version change ", 64, 0, 0); - SDL_WaitEvent(&event); - return; - } - SDL_Flip (gfx.screen); + SDL_Flip (gfx.screen); bman.updatestatusbar = 1; // force an update timestamp = SDL_GetTicks (); // needed for time sync. diff --git a/src/network.c b/src/network.c index 04173dc..2d6e1c6 100644 --- a/src/network.c +++ b/src/network.c @@ -1,4 +1,4 @@ -/* $Id: network.c,v 1.32 2003/06/10 23:04:12 stpohle Exp $ */ +/* $Id: network.c,v 1.33 2003/06/12 20:52:45 stpohle Exp $ */ /* network routines. */ @@ -782,8 +782,8 @@ net_new_game () bman.players[p].bombs[i].state = BS_off; bman.players[p].bombs[i].ex_nr = -1; bman.players[p].bombs[i].moves = 0; - bman.players[p].bombs[i].movesto.x = 0; - bman.players[p].bombs[i].movesto.y = 0; + bman.players[p].bombs[i].moveto.x = 0; + bman.players[p].bombs[i].moveto.y = 0; } } diff --git a/src/single.c b/src/single.c index b07677b..5e87976 100644 --- a/src/single.c +++ b/src/single.c @@ -1,4 +1,4 @@ -/* $Id: single.c,v 1.31 2003/06/10 23:04:12 stpohle Exp $ */ +/* $Id: single.c,v 1.32 2003/06/12 20:52:45 stpohle Exp $ */ /* single player */ #include "basic.h" @@ -35,8 +35,8 @@ single_game_new () bman.players[p].bombs[i].state = BS_off; bman.players[p].bombs[i].ex_nr = -1; bman.players[p].bombs[i].moves = 0; - bman.players[p].bombs[i].movesto.x = 0; - bman.players[p].bombs[i].movesto.y = 0; + bman.players[p].bombs[i].moveto.x = 0; + bman.players[p].bombs[i].moveto.y = 0; } for (i = 0; i < PI_max; i++)