drawing-order: draw tiles right-to-left
to handle tall tiles correctly
This commit is contained in:
parent
4336dbf5e7
commit
d6a295cbe7
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ public class MicropolisDrawingArea extends JComponent
|
|||
|
||||
for (int y = minY; y < maxY; y++)
|
||||
{
|
||||
for (int x = minX; x < maxX; x++)
|
||||
for (int x = maxX-1; x >= minX; x--)
|
||||
{
|
||||
int cell = m.getTile(x,y);
|
||||
if (blinkUnpoweredZones &&
|
||||
|
|
Reference in a new issue