junglejourney
changeset 232:d2d03d54402c
Fixed inverted tile colours.
| author | David Boddie <david@boddie.org.uk> |
|---|---|
| date | Thu Aug 16 22:13:37 2012 +0200 |
| parents | e24e7d33b5e7 |
| children | 26066c4a9925 |
| files | tools/maps/tileimages.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/tools/maps/tileimages.py Sun Feb 05 02:09:50 2012 +0100 1.2 +++ b/tools/maps/tileimages.py Thu Aug 16 22:13:37 2012 +0200 1.3 @@ -72,7 +72,7 @@ 1.4 [("+", "\x00"), ("#", "\x01"), (".", "\x02"), ("@", "\x03")]))) 1.5 1.6 final_exit1 = Image.fromstring("P", tile_size, "".join(read_xpm("../../images/finalexitl.xpm", 1.7 - [("+", "\x00"), ("#", "\x01"), (".", "\x02"), ("@", "\x03")]))) 1.8 + [(".", "\x00"), ("#", "\x01"), ("+", "\x02"), ("@", "\x03")]))) 1.9 final_exit2 = Image.fromstring("P", tile_size, "".join(read_xpm("../../images/finalexitr.xpm", 1.10 [(".", "\x00"), ("#", "\x01"), ("+", "\x02"), ("@", "\x03")]))) 1.11
