file-format: do not synthesize compatibility bits

since there's no software we need to be compatible with
This commit is contained in:
Jason Long 2013-12-03 13:26:38 -05:00
parent 4a0cfc2bcc
commit da7b30af88

View file

@ -2178,21 +2178,6 @@ public class Micropolis
for (int x = 0; x < DEFAULT_WIDTH; x++) for (int x = 0; x < DEFAULT_WIDTH; x++)
{ {
int z = map[y][x]; int z = map[y][x];
if (isConductive(z & LOMASK)) {
z |= 16384; //synthesize CONDBIT on export
}
if (isCombustible(z & LOMASK)) {
z |= 8192; //synthesize BURNBIT on export
}
if (isTileDozeable(x, y)) {
z |= 4096; //synthesize BULLBIT on export
}
if (isAnimated(z & LOMASK)) {
z |= 2048; //synthesize ANIMBIT on export
}
if (isZoneCenter(z & LOMASK)) {
z |= 1024; //synthesize ZONEBIT
}
if (x != 0) { if (x != 0) {
out.writeCharacters(" "); out.writeCharacters(" ");
} }