From c5ae9840ae67e1f2a7dee0edcd6a63c5768fcdf6 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Mon, 30 Nov 2009 23:19:16 +1000 Subject: 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. --- crawl-ref/source/mapdef.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'crawl-ref/source/mapdef.cc') 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(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( unmarshallShort(inf) ); - border_fill_type = static_cast( unmarshallShort(inf) ); chance_priority = unmarshallLong(inf); chance = unmarshallLong(inf); weight = unmarshallLong(inf); -- cgit v1.2.3-54-g00ecf