dämlicher bug, nochmal gefixt...

This commit is contained in:
Enno Rehling 2002-05-26 20:51:20 +00:00
parent a785e7c004
commit cb9f17a0c8
2 changed files with 5 additions and 5 deletions

View File

@ -444,9 +444,9 @@ b_nameroad(const border * b, const region * r, const struct faction * f, int gfl
unused(f);
if (gflags & GF_ARTICLE) {
if (!(gflags & GF_DETAILED)) strcpy(buffer, "eine Straße");
else if (terrain[rterrain(r)].roadreq>=local) {
else if (terrain[rterrain(r)].roadreq<=local) {
int remote = (r!=b->to)?(rval & 0xFFFF):((rval>>16) & 0xFFFF);
if (terrain[rterrain(r2)].roadreq>=remote) {
if (terrain[rterrain(r2)].roadreq<=remote) {
strcpy(buffer, "eine Straße");
} else {
strcpy(buffer, "eine unvollständige Straße");

View File

@ -8,7 +8,7 @@ CFLAGS += -DENNO_ROXXORS
LD=gcc
AR=ar
CC=@colorgcc
#CC=@colorgcc
INSTALL=install
MSG_COMPILE = "---> Compiling $@ "
MSG_SUBDIR = "--> Making $@ in $$subdir "
#MSG_COMPILE = "---> Compiling $@ "
#MSG_SUBDIR = "--> Making $@ in $$subdir "