summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 00:58:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 00:58:40 +0000
commit10cf462136b8e8a820839add91c8aed617c19549 (patch)
treebccbbe035b2eb0bbfeee4e824a41da5fd1ba0434 /crawl-ref/source/tags.cc
parent9c10577f124eba5a33a0a4b318b9ab93d3aba2fd (diff)
downloadcrawl-ref-10cf462136b8e8a820839add91c8aed617c19549.tar.gz
crawl-ref-10cf462136b8e8a820839add91c8aed617c19549.zip
Remove unused parameters.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9548 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 007dc9036a..1ea4156b13 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -167,8 +167,8 @@ static void tag_construct_lost_items(writer &th);
static void tag_read_you(reader &th, char minorVersion);
static void tag_read_you_items(reader &th, char minorVersion);
static void tag_read_you_dungeon(reader &th);
-static void tag_read_lost_monsters(reader &th, int minorVersion);
-static void tag_read_lost_items(reader &th, int minorVersion);
+static void tag_read_lost_monsters(reader &th);
+static void tag_read_lost_items(reader &th);
static void tag_construct_level(writer &th);
static void tag_construct_level_items(writer &th);
@@ -730,8 +730,8 @@ tag_type tag_read(FILE *fp, char minorVersion)
case TAG_LEVEL_TILES: tag_read_level_tiles(th); break;
case TAG_GHOST: tag_read_ghost(th, minorVersion); break;
case TAG_LOST_MONSTERS:
- tag_read_lost_monsters(th, minorVersion);
- tag_read_lost_items(th, minorVersion);
+ tag_read_lost_monsters(th);
+ tag_read_lost_items(th);
break;
default:
// I don't know how to read that!
@@ -1639,14 +1639,14 @@ static void tag_read_you_dungeon(reader &th)
read_level_connectivity(th);
}
-static void tag_read_lost_monsters(reader &th, int minorVersion)
+static void tag_read_lost_monsters(reader &th)
{
the_lost_ones.clear();
unmarshallMap(th, the_lost_ones,
unmarshall_level_id, unmarshall_follower_list);
}
-static void tag_read_lost_items(reader &th, int minorVersion)
+static void tag_read_lost_items(reader &th)
{
transiting_items.clear();