(opt_ALL_BLEED, opt_BIG_CITY, opt_BLITZ, opt_BRIDGETOWERS)
(opt_DEFENSE_INFRA, opt_DEMANDUPDATE, opt_DRNUKE, opt_EASY_BRIDGES) (opt_FALLOUT, opt_FUEL, opt_GODNEWS, opt_GO_RENEW, opt_GUINEA_PIGS) (opt_HIDDEN, opt_INTERDICT_ATT, opt_LANDSPIES, opt_LOANS) (opt_LOSE_CONTACT, opt_MARKET, opt_MOB_ACCESS, opt_NOFOOD) (opt_NOMOBCOST, opt_NO_FORT_FIRE, opt_NO_PLAGUE, opt_PINPOINTMISSILE) (opt_RES_POP, opt_SAIL, opt_SHOWPLANE, opt_SLOW_WAR, opt_SUPER_BARS) (opt_TECH_POP, opt_TRADESHIPS, opt_TREATIES, opt_UPDATESCHED): Remove conditional initialization. Values unchanged. (ALL_BLEED, BIG_CITY, BLITZ, BRIDGETOWERS, DEFENSE_INFRA) (DEMANDUPDATE, DRNUKE, EASY_BRIDGES, FALLOUT, FUEL, GODNEWS, GO_RENEW) (GUINEA_PIGS, HIDDEN, INTERDICT_ATT, LANDSPIES, LOANS, LOSE_CONTACT) (MARKET, MOB_ACCESS, NOFOOD, NOMOBCOST, NO_FORT_FIRE, NO_PLAGUE) (PINPOINTMISSILE, RES_POP, SAIL, SHOWPLANE, SLOW_WAR, SUPER_BARS) (TECH_POP, TRADESHIPS, TREATIES, UPDATESCHED): Unused, remove.
This commit is contained in:
parent
ade510f787
commit
ae24898e50
2 changed files with 31 additions and 260 deletions
|
@ -29,216 +29,42 @@
|
|||
*
|
||||
* Known contributors to this file:
|
||||
* Steve McClure, 1998
|
||||
*
|
||||
* Markus Armbruster, 2005
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "misc.h"
|
||||
#include "options.h"
|
||||
#include "optlist.h"
|
||||
|
||||
/* there must be an easier way - but can't think of one off hand */
|
||||
|
||||
#ifdef NO_FORT_FIRE
|
||||
int opt_NO_FORT_FIRE = 1;
|
||||
#else
|
||||
int opt_NO_FORT_FIRE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef BRIDGETOWERS
|
||||
int opt_BRIDGETOWERS = 1;
|
||||
#else
|
||||
int opt_BRIDGETOWERS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef GODNEWS
|
||||
int opt_GODNEWS = 1;
|
||||
#else
|
||||
int opt_GODNEWS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef TREATIES
|
||||
int opt_TREATIES = 1;
|
||||
#else
|
||||
int opt_TREATIES = 0;
|
||||
#endif
|
||||
|
||||
#ifdef GO_RENEW
|
||||
int opt_GO_RENEW = 1;
|
||||
#else
|
||||
int opt_GO_RENEW = 0;
|
||||
#endif
|
||||
|
||||
#ifdef GUINEA_PIGS
|
||||
int opt_GUINEA_PIGS = 1;
|
||||
#else
|
||||
int opt_GUINEA_PIGS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef DEFENSE_INFRA
|
||||
int opt_DEFENSE_INFRA = 1;
|
||||
#else
|
||||
int opt_DEFENSE_INFRA = 0;
|
||||
#endif
|
||||
|
||||
#ifdef LANDSPIES
|
||||
int opt_LANDSPIES = 1;
|
||||
#else
|
||||
int opt_LANDSPIES = 0;
|
||||
#endif
|
||||
|
||||
#ifdef MOB_ACCESS
|
||||
int opt_MOB_ACCESS = 1;
|
||||
#else
|
||||
int opt_MOB_ACCESS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef LOANS
|
||||
int opt_LOANS = 1;
|
||||
#else
|
||||
int opt_LOANS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef MARKET
|
||||
int opt_MARKET = 1;
|
||||
#else
|
||||
int opt_MARKET = 0;
|
||||
#endif
|
||||
|
||||
#ifdef NOFOOD
|
||||
int opt_NOFOOD = 1;
|
||||
#else
|
||||
int opt_NOFOOD = 0;
|
||||
#endif
|
||||
|
||||
#ifdef BLITZ
|
||||
int opt_BLITZ = 1;
|
||||
#else
|
||||
int opt_BLITZ = 0;
|
||||
#endif
|
||||
|
||||
#ifdef HIDDEN
|
||||
int opt_HIDDEN = 1;
|
||||
#else
|
||||
int opt_HIDDEN = 0;
|
||||
#endif
|
||||
|
||||
#ifdef LOSE_CONTACT
|
||||
int opt_LOSE_CONTACT = 1;
|
||||
#else
|
||||
int opt_LOSE_CONTACT = 0;
|
||||
#endif
|
||||
|
||||
#ifdef FUEL
|
||||
int opt_FUEL = 1;
|
||||
#else
|
||||
int opt_FUEL = 0;
|
||||
#endif
|
||||
|
||||
#ifdef TRADESHIPS
|
||||
int opt_TRADESHIPS = 1;
|
||||
#else
|
||||
int opt_TRADESHIPS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef NOMOBCOST
|
||||
int opt_NOMOBCOST = 1;
|
||||
#else
|
||||
int opt_NOMOBCOST = 0;
|
||||
#endif
|
||||
|
||||
#ifdef SUPER_BARS
|
||||
int opt_SUPER_BARS = 1;
|
||||
#else
|
||||
int opt_SUPER_BARS = 0;
|
||||
#endif
|
||||
|
||||
#ifdef EASY_BRIDGES
|
||||
int opt_EASY_BRIDGES = 1;
|
||||
#else
|
||||
int opt_EASY_BRIDGES = 0;
|
||||
#endif
|
||||
|
||||
#ifdef ALL_BLEED
|
||||
int opt_ALL_BLEED = 1;
|
||||
#else
|
||||
int opt_ALL_BLEED = 0;
|
||||
#endif
|
||||
|
||||
#ifdef DRNUKE
|
||||
int opt_DRNUKE = 1;
|
||||
#else
|
||||
int opt_DRNUKE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef SLOW_WAR
|
||||
int opt_SLOW_WAR = 1;
|
||||
#else
|
||||
int opt_SLOW_WAR = 0;
|
||||
#endif
|
||||
|
||||
#ifdef NO_PLAGUE
|
||||
int opt_NO_PLAGUE = 1;
|
||||
#else
|
||||
int opt_NO_PLAGUE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef RES_POP
|
||||
int opt_RES_POP = 1;
|
||||
#else
|
||||
int opt_RES_POP = 0;
|
||||
#endif
|
||||
|
||||
#ifdef SHOWPLANE
|
||||
int opt_SHOWPLANE = 1;
|
||||
#else
|
||||
int opt_SHOWPLANE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef PINPOINTMISSILE
|
||||
int opt_PINPOINTMISSILE = 1;
|
||||
#else
|
||||
int opt_PINPOINTMISSILE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef FALLOUT
|
||||
int opt_FALLOUT = 1;
|
||||
#else
|
||||
int opt_FALLOUT = 0;
|
||||
#endif
|
||||
|
||||
#ifdef SAIL
|
||||
int opt_SAIL = 1;
|
||||
#else
|
||||
int opt_SAIL = 0;
|
||||
#endif
|
||||
|
||||
#ifdef UPDATESCHED
|
||||
int opt_UPDATESCHED = 1;
|
||||
#else
|
||||
int opt_UPDATESCHED = 0;
|
||||
#endif
|
||||
|
||||
#ifdef DEMANDUPDATE
|
||||
int opt_DEMANDUPDATE = 1;
|
||||
#else
|
||||
int opt_DEMANDUPDATE = 0;
|
||||
#endif
|
||||
|
||||
#ifdef BIG_CITY
|
||||
int opt_BIG_CITY = 1;
|
||||
#else
|
||||
int opt_BIG_CITY = 0;
|
||||
#endif
|
||||
|
||||
#ifdef INTERDICT_ATT
|
||||
int opt_BLITZ = 1;
|
||||
int opt_BRIDGETOWERS = 1;
|
||||
int opt_DEFENSE_INFRA = 0;
|
||||
int opt_DEMANDUPDATE = 1;
|
||||
int opt_DRNUKE = 0;
|
||||
int opt_EASY_BRIDGES = 1;
|
||||
int opt_FALLOUT = 1;
|
||||
int opt_FUEL = 0;
|
||||
int opt_GODNEWS = 1;
|
||||
int opt_GO_RENEW = 0;
|
||||
int opt_GUINEA_PIGS = 0;
|
||||
int opt_HIDDEN = 0;
|
||||
int opt_INTERDICT_ATT = 1;
|
||||
#else
|
||||
int opt_INTERDICT_ATT = 0;
|
||||
#endif
|
||||
|
||||
#ifdef TECH_POP
|
||||
int opt_TECH_POP = 1;
|
||||
#else
|
||||
int opt_LANDSPIES = 1;
|
||||
int opt_LOANS = 1;
|
||||
int opt_LOSE_CONTACT = 0;
|
||||
int opt_MARKET = 0;
|
||||
int opt_MOB_ACCESS = 0;
|
||||
int opt_NOFOOD = 1;
|
||||
int opt_NOMOBCOST = 1;
|
||||
int opt_NO_FORT_FIRE = 0;
|
||||
int opt_NO_PLAGUE = 1;
|
||||
int opt_PINPOINTMISSILE = 1;
|
||||
int opt_RES_POP = 0;
|
||||
int opt_SAIL = 1;
|
||||
int opt_SHOWPLANE = 1;
|
||||
int opt_SLOW_WAR = 0;
|
||||
int opt_SUPER_BARS = 0;
|
||||
int opt_TECH_POP = 0;
|
||||
#endif
|
||||
int opt_TRADESHIPS = 0;
|
||||
int opt_TREATIES = 1;
|
||||
int opt_UPDATESCHED = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue