Merge pull request #484 from ChillyDoom/wi_stuff-sizeof-fix

Minor Intermission Fix
This commit is contained in:
coelckers 2016-01-19 16:39:32 +01:00
commit 9282eda306
2 changed files with 6 additions and 7 deletions

View File

@ -1228,7 +1228,7 @@ void WI_initDeathmatchStats (void)
acceleratestage = 0; acceleratestage = 0;
memset(playerready, 0, sizeof(playerready)); memset(playerready, 0, sizeof(playerready));
memset(cnt_frags, 0, sizeof(cnt_frags)); memset(cnt_frags, 0, sizeof(cnt_frags));
memset(cnt_deaths, 0, sizeof(cnt_frags)); memset(cnt_deaths, 0, sizeof(cnt_deaths));
memset(player_deaths, 0, sizeof(player_deaths)); memset(player_deaths, 0, sizeof(player_deaths));
total_frags = 0; total_frags = 0;
total_deaths = 0; total_deaths = 0;

View File

@ -41,7 +41,6 @@ struct wbplayerstruct_t
int stime; int stime;
int frags[MAXPLAYERS]; int frags[MAXPLAYERS];
int fragcount; // [RH] Cumulative frags for this player int fragcount; // [RH] Cumulative frags for this player
}; };
struct wbstartstruct_t struct wbstartstruct_t