# HG changeset patch # User David Boddie # Date 1345148017 -7200 # Node ID d2d03d54402c8642ded2861769f97946daedc032 # Parent e24e7d33b5e7b24190d5e3194d3a48e931f8b3b6 Fixed inverted tile colours. diff -r e24e7d33b5e7 -r d2d03d54402c tools/maps/tileimages.py --- a/tools/maps/tileimages.py Sun Feb 05 02:09:50 2012 +0100 +++ b/tools/maps/tileimages.py Thu Aug 16 22:13:37 2012 +0200 @@ -72,7 +72,7 @@ [("+", "\x00"), ("#", "\x01"), (".", "\x02"), ("@", "\x03")]))) final_exit1 = Image.fromstring("P", tile_size, "".join(read_xpm("../../images/finalexitl.xpm", - [("+", "\x00"), ("#", "\x01"), (".", "\x02"), ("@", "\x03")]))) + [(".", "\x00"), ("#", "\x01"), ("+", "\x02"), ("@", "\x03")]))) final_exit2 = Image.fromstring("P", tile_size, "".join(read_xpm("../../images/finalexitr.xpm", [(".", "\x00"), ("#", "\x01"), ("+", "\x02"), ("@", "\x03")])))