forked from github/server
dämlicher bug, nochmal gefixt...
This commit is contained in:
parent
a785e7c004
commit
cb9f17a0c8
|
@ -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");
|
||||
|
|
|
@ -8,7 +8,7 @@ CFLAGS += -DENNO_ROXXORS
|
|||
|
||||
LD=gcc
|
||||
AR=ar
|
||||
CC=@colorgcc
|
||||
#CC=@colorgcc
|
||||
INSTALL=install
|
||||
MSG_COMPILE = "[1m[32m---> Compiling $@ [0m"
|
||||
MSG_SUBDIR = "[1m[37m--> Making $@ in $$subdir [0m"
|
||||
#MSG_COMPILE = "[1m[32m---> Compiling $@ [0m"
|
||||
#MSG_SUBDIR = "[1m[37m--> Making $@ in $$subdir [0m"
|
||||
|
|
Loading…
Reference in New Issue