From da7b30af88480feefe7ab194102b016df824b7b0 Mon Sep 17 00:00:00 2001 From: Jason Long Date: Tue, 3 Dec 2013 13:26:38 -0500 Subject: [PATCH] file-format: do not synthesize compatibility bits since there's no software we need to be compatible with --- src/micropolisj/engine/Micropolis.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/micropolisj/engine/Micropolis.java b/src/micropolisj/engine/Micropolis.java index fb3a988..3cebd41 100644 --- a/src/micropolisj/engine/Micropolis.java +++ b/src/micropolisj/engine/Micropolis.java @@ -2178,21 +2178,6 @@ public class Micropolis for (int x = 0; x < DEFAULT_WIDTH; 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) { out.writeCharacters(" "); }