- Kosmetik

This commit is contained in:
Christian Schlittchen 2002-10-27 12:53:18 +00:00
parent 18770d6e66
commit 5814818374
1 changed files with 7 additions and 1 deletions

View File

@ -314,6 +314,7 @@ factionhere(region * r, int f)
return false;
}
#ifdef ALLIANCES
static boolean
alliancehere(region * r, int alliance)
{
@ -323,6 +324,7 @@ alliancehere(region * r, int alliance)
return true;
return false;
}
#endif
#if NEW_RESOURCEGROWTH
static boolean
@ -428,7 +430,7 @@ drawmap(boolean maponly) {
addstr("Dropouts ");
break;
case -11:
addstr("Allianz ");
printw((NCURSES_CONST char*)"Allianz %d ", hl_alliance);
break;
default:
printw((NCURSES_CONST char*)"Partei %d ", hl);
@ -737,7 +739,11 @@ SetHighlight(void)
wmove(win, 2, 2);
wAddstr(" A)nfängern, L)aen, C)haos, G)odcurse");
wmove(win, 3, 2);
#ifdef ALLIANCES
wAddstr(" D)ropouts, Allian(Z) oder N)ichts?");
#else
wAddstr(" D)ropouts oder N)ichts?");
#endif
wrefresh(win);
c = tolower(getch());
switch (c) {