mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
Merge branch 'master' of https://github.com/rheit/zdoom
Conflicts: src/g_hexen/a_wraith.cpp
This commit is contained in:
commit
83cbf6cae5
3 changed files with 9 additions and 10 deletions
|
@ -1930,9 +1930,6 @@ void G_DoLoadGame ()
|
||||||
}
|
}
|
||||||
|
|
||||||
G_ReadSnapshots (png);
|
G_ReadSnapshots (png);
|
||||||
STAT_Read(png);
|
|
||||||
FRandom::StaticReadRNGState (png);
|
|
||||||
P_ReadACSDefereds (png);
|
|
||||||
|
|
||||||
// load a base level
|
// load a base level
|
||||||
savegamerestore = true; // Use the player actors in the savegame
|
savegamerestore = true; // Use the player actors in the savegame
|
||||||
|
@ -1942,6 +1939,9 @@ void G_DoLoadGame ()
|
||||||
delete[] map;
|
delete[] map;
|
||||||
savegamerestore = false;
|
savegamerestore = false;
|
||||||
|
|
||||||
|
STAT_Read(png);
|
||||||
|
FRandom::StaticReadRNGState(png);
|
||||||
|
P_ReadACSDefereds(png);
|
||||||
P_ReadACSVars(png);
|
P_ReadACSVars(png);
|
||||||
|
|
||||||
NextSkill = -1;
|
NextSkill = -1;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue