mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-25 22:10:59 +00:00
Update savegame tables (forgot them in the previous commit)
This commit is contained in:
parent
5ed89a0373
commit
77c9cb7e05
2 changed files with 9 additions and 9 deletions
|
@ -149,10 +149,8 @@ extern void PlayerTrail_Init ( void ) ;
|
|||
extern void G_SetSpectatorStats ( edict_t * ent ) ;
|
||||
extern void G_CheckChaseStats ( edict_t * ent ) ;
|
||||
extern void G_SetStats ( edict_t * ent ) ;
|
||||
extern void Cmd_Help_f ( edict_t * ent ) ;
|
||||
extern void HelpComputer ( edict_t * ent ) ;
|
||||
extern void Cmd_Score_f ( edict_t * ent ) ;
|
||||
extern void DeathmatchScoreboard ( edict_t * ent ) ;
|
||||
extern void InventoryMessage ( edict_t * ent ) ;
|
||||
extern void HelpComputerMessage ( edict_t * ent ) ;
|
||||
extern void DeathmatchScoreboardMessage ( edict_t * ent , edict_t * killer ) ;
|
||||
extern void BeginIntermission ( edict_t * targ ) ;
|
||||
extern void MoveClientToIntermission ( edict_t * ent ) ;
|
||||
|
@ -193,7 +191,7 @@ extern void SP_info_player_intermission ( void ) ;
|
|||
extern void SP_info_player_coop ( edict_t * self ) ;
|
||||
extern void SP_info_player_deathmatch ( edict_t * self ) ;
|
||||
extern void SP_info_player_start ( edict_t * self ) ;
|
||||
extern void SP_CreateUnnamedSpawn( edict_t *self );
|
||||
extern void SP_CreateUnnamedSpawn ( edict_t * self ) ;
|
||||
extern void SP_CreateCoopSpots ( edict_t * self ) ;
|
||||
extern void SP_FixCoopSpots ( edict_t * self ) ;
|
||||
extern void SP_monster_tank ( edict_t * self ) ;
|
||||
|
@ -1007,6 +1005,8 @@ extern void Cmd_WeapNext_f ( edict_t * ent ) ;
|
|||
extern void Cmd_WeapPrev_f ( edict_t * ent ) ;
|
||||
extern void Cmd_InvUse_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Inven_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Help_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Score_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Drop_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Use_f ( edict_t * ent ) ;
|
||||
extern void Cmd_Noclip_f ( edict_t * ent ) ;
|
||||
|
|
|
@ -149,10 +149,8 @@
|
|||
{"G_SetSpectatorStats", (byte *)G_SetSpectatorStats},
|
||||
{"G_CheckChaseStats", (byte *)G_CheckChaseStats},
|
||||
{"G_SetStats", (byte *)G_SetStats},
|
||||
{"Cmd_Help_f", (byte *)Cmd_Help_f},
|
||||
{"HelpComputer", (byte *)HelpComputer},
|
||||
{"Cmd_Score_f", (byte *)Cmd_Score_f},
|
||||
{"DeathmatchScoreboard", (byte *)DeathmatchScoreboard},
|
||||
{"InventoryMessage", (byte *)InventoryMessage},
|
||||
{"HelpComputerMessage", (byte *)HelpComputerMessage},
|
||||
{"DeathmatchScoreboardMessage", (byte *)DeathmatchScoreboardMessage},
|
||||
{"BeginIntermission", (byte *)BeginIntermission},
|
||||
{"MoveClientToIntermission", (byte *)MoveClientToIntermission},
|
||||
|
@ -1007,6 +1005,8 @@
|
|||
{"Cmd_WeapPrev_f", (byte *)Cmd_WeapPrev_f},
|
||||
{"Cmd_InvUse_f", (byte *)Cmd_InvUse_f},
|
||||
{"Cmd_Inven_f", (byte *)Cmd_Inven_f},
|
||||
{"Cmd_Help_f", (byte *)Cmd_Help_f},
|
||||
{"Cmd_Score_f", (byte *)Cmd_Score_f},
|
||||
{"Cmd_Drop_f", (byte *)Cmd_Drop_f},
|
||||
{"Cmd_Use_f", (byte *)Cmd_Use_f},
|
||||
{"Cmd_Noclip_f", (byte *)Cmd_Noclip_f},
|
||||
|
|
Loading…
Reference in a new issue