forked from github/server
Datenformat, plane-attribute
This commit is contained in:
parent
4a5ea9d7cf
commit
c1a5e55467
1 changed files with 4 additions and 5 deletions
|
@ -1835,7 +1835,7 @@ writegame(char *path, char quiet)
|
||||||
}
|
}
|
||||||
w = w->next;
|
w = w->next;
|
||||||
}
|
}
|
||||||
ws(F, "end");
|
fputs("end ", F);
|
||||||
#endif
|
#endif
|
||||||
a_write(F, pl->attribs);
|
a_write(F, pl->attribs);
|
||||||
wnl(F);
|
wnl(F);
|
||||||
|
@ -1956,7 +1956,7 @@ writegame(char *path, char quiet)
|
||||||
wi(F, res->divisor);
|
wi(F, res->divisor);
|
||||||
res = res->next;
|
res = res->next;
|
||||||
}
|
}
|
||||||
ws(F, "end");
|
fputs("end ", F);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
assert(!"invalid defines");
|
assert(!"invalid defines");
|
||||||
|
@ -1974,8 +1974,7 @@ writegame(char *path, char quiet)
|
||||||
ws(F, resourcename(demand->type->itype->rtype, 0));
|
ws(F, resourcename(demand->type->itype->rtype, 0));
|
||||||
wi(F, demand->value);
|
wi(F, demand->value);
|
||||||
}
|
}
|
||||||
fputs("end", F);
|
fputs("end\n", F);
|
||||||
wnl(F);
|
|
||||||
}
|
}
|
||||||
a_write(F, r->attribs);
|
a_write(F, r->attribs);
|
||||||
wnl(F);
|
wnl(F);
|
||||||
|
|
Loading…
Reference in a new issue