summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/art-data.pl
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-16 19:13:58 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-16 19:14:56 +0200
commitfc2aeb4d5915807a4ab8b62ff5adf3d1ead3c01d (patch)
treec67f390c394121c6412aa0a08fb37d5e086ff0a8 /crawl-ref/source/util/art-data.pl
parent4ceef457b6dbd2d67af73af3b7695cd52dbb469b (diff)
downloadcrawl-ref-fc2aeb4d5915807a4ab8b62ff5adf3d1ead3c01d.tar.gz
crawl-ref-fc2aeb4d5915807a4ab8b62ff5adf3d1ead3c01d.zip
Fix unrand tile mismatches between architectures.
They were written in hash order, which is not supposed to be stable.
Diffstat (limited to 'crawl-ref/source/util/art-data.pl')
-rwxr-xr-xcrawl-ref/source/util/art-data.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/art-data.pl b/crawl-ref/source/util/art-data.pl
index a7ce7970cc..5093ca9335 100755
--- a/crawl-ref/source/util/art-data.pl
+++ b/crawl-ref/source/util/art-data.pl
@@ -775,7 +775,7 @@ sub write_tiles
HEADER_END
# Output the tile definitions sorted by type (and thus path).
- foreach my $type (keys %art_by_type)
+ foreach my $type (sort keys %art_by_type)
{
print TILES "%sdir item/$type/artefact\n";