correct comments about anarchy-only

This commit is contained in:
Martin Schaffner 2004-10-23 19:15:46 +00:00
parent baff1c663c
commit e431d33445
3 changed files with 5 additions and 4 deletions

View file

@ -13,6 +13,7 @@
main/multi.h, main/network.c: move mission list handling functionality
to mission.c, remove unnecessary load_mission calls in menu.c
* main/game.c: remove unnecessary build_mission_list call
* main/mission.c, main/mission.h: correct comments about anarchy-only
2004-10-21 Martin Schaffner <maschaffner@gmx.ch>

View file

@ -1,4 +1,4 @@
/* $Id: mission.c,v 1.27 2004-10-23 18:59:02 schaffner Exp $ */
/* $Id: mission.c,v 1.28 2004-10-23 19:15:46 schaffner Exp $ */
/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
@ -487,7 +487,7 @@ void promote (char * mission_name, int * top_place, int num_missions)
//fills in the global list of missions. Returns the number of missions
//in the list. If anarchy_mode set, don't include non-anarchy levels.
//in the list. If anarchy_mode is set, then also add anarchy-only missions.
extern char CDROM_dir[];
extern char AltHogDir[];

View file

@ -1,4 +1,4 @@
/* $Id: mission.h,v 1.19 2004-10-23 18:59:02 schaffner Exp $ */
/* $Id: mission.h,v 1.20 2004-10-23 19:15:46 schaffner Exp $ */
/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
@ -95,7 +95,7 @@ extern char Level_names[MAX_LEVELS_PER_MISSION][FILENAME_LEN];
extern char Secret_level_names[MAX_SECRET_LEVELS_PER_MISSION][FILENAME_LEN];
//fills in the global list of missions. Returns the number of missions
//in the list. If anarchy_mode set, don't include non-anarchy levels.
//in the list. If anarchy_mode is set, then also add anarchy-only missions.
//if there is only one mission, this function will call load_mission on it.
int build_mission_list(int anarchy_mode);