summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-30 23:19:16 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-30 23:23:59 +1000
commitc5ae9840ae67e1f2a7dee0edcd6a63c5768fcdf6 (patch)
tree46bd8e0e46cbb3a522d68fe0127e7194eb3a50b1 /crawl-ref/source/mapdef.cc
parent6f06963cd90a07d112d7a41e057f8076e250d28c (diff)
downloadcrawl-ref-c5ae9840ae67e1f2a7dee0edcd6a63c5768fcdf6.tar.gz
crawl-ref-c5ae9840ae67e1f2a7dee0edcd6a63c5768fcdf6.zip
Revert "Convert dgn.set_border_fill_type to BORDER."
This reverts commit 941444076c26e5e5149c6368a4261d60842fe3ec. After consultation with Enne, this doesn't really fix the issue, and is therefore superfluous.
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 9684032f2e..2d04e483be 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -1989,7 +1989,6 @@ void map_def::write_index(writer& outf) const
marshallString4(outf, place_loaded_from.filename);
marshallLong(outf, place_loaded_from.lineno);
marshallShort(outf, orient);
- marshallShort(outf, static_cast<short>(border_fill_type));
marshallLong(outf, chance_priority);
marshallLong(outf, chance);
marshallLong(outf, weight);
@@ -2006,7 +2005,6 @@ void map_def::read_index(reader& inf)
unmarshallString4(inf, place_loaded_from.filename);
place_loaded_from.lineno = unmarshallLong(inf);
orient = static_cast<map_section_type>( unmarshallShort(inf) );
- border_fill_type = static_cast<dungeon_feature_type>( unmarshallShort(inf) );
chance_priority = unmarshallLong(inf);
chance = unmarshallLong(inf);
weight = unmarshallLong(inf);