(EF_PAGE_HEADINGS, page_headings_symbols, M_NOTUSED): New.

(empfile): Add it.
(rpt_ca): Use it.
This commit is contained in:
Ron Koenderink 2006-01-29 18:40:11 +00:00
parent 1bca66c061
commit f438b74e85
6 changed files with 24 additions and 2 deletions

View file

@ -557,7 +557,8 @@ struct castr rpt_ca[] = {
{NSC_STRING, 0, NUM_RPTS, offsetof(struct rptstr, r_newstory), "newstory",
EF_BAD},
{NSC_INT, 0, 0, offsetof(struct rptstr, r_good_will), "good_will", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct rptstr, r_newspage), "newspage", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct rptstr, r_newspage), "newspage",
EF_PAGE_HEADINGS},
{NSC_NOTYPE, 0, 0, 0, NULL, EF_BAD}
};
@ -791,3 +792,19 @@ struct symbol sector_navigation[] = { /* for d_nav */
{NAV_60, "bridge"},
{0, NULL}
};
struct symbol page_headings_symbols[] = {
{N_NOTUSED, "Not Used"},
{N_FOR, "Foreign Affairs"},
{N_FRONT, "The Front Line"},
{N_SEA, "The High Seas"},
{N_SKY, "Sky Watch"},
{N_MISS, "Guidance Systems"},
{N_ARTY, "Firestorms"},
{N_ECON, "Business & Economics"},
{N_COLONY, "The Frontier"},
{N_HOME, "The Home Front"},
{N_SPY, "Espionage"},
{N_TELE, "Telecommunications"},
{0, NULL}
};