summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 01:08:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-26 01:08:40 +0000
commit2a7a9ce4b22a8a0003b0cc422eee5f6dd44310ca (patch)
treec75ebd8a87a05af07d40656f78741ca87e243d9b /crawl-ref
parent10cf462136b8e8a820839add91c8aed617c19549 (diff)
downloadcrawl-ref-2a7a9ce4b22a8a0003b0cc422eee5f6dd44310ca.tar.gz
crawl-ref-2a7a9ce4b22a8a0003b0cc422eee5f6dd44310ca.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9549 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/tags.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 1ea4156b13..f3388f935f 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -187,7 +187,7 @@ static void tag_construct_ghost(writer &th);
static void tag_read_ghost(reader &th, char minorVersion);
static void marshallGhost(writer &th, const ghost_demon &ghost);
-static ghost_demon unmarshallGhost( reader &th );
+static ghost_demon unmarshallGhost(reader &th);
static void marshallResists(writer &, const mon_resist_def &);
static void unmarshallResists(reader &, mon_resist_def &);
@@ -2175,7 +2175,7 @@ static void unmarshall_monster(reader &th, monsters &m)
m.god = static_cast<god_type>( unmarshallByte(th) );
if (m.type == MONS_PLAYER_GHOST || m.type == MONS_PANDEMONIUM_DEMON)
- m.set_ghost( unmarshallGhost(th) );
+ m.set_ghost(unmarshallGhost(th));
m.check_speed();
}
@@ -2445,7 +2445,7 @@ static void marshallGhost(writer &th, const ghost_demon &ghost)
marshallSpells(th, ghost.spells);
}
-static ghost_demon unmarshallGhost( reader &th )
+static ghost_demon unmarshallGhost(reader &th)
{
ghost_demon ghost;
@@ -2492,5 +2492,5 @@ static void tag_read_ghost(reader &th, char minorVersion)
return;
for (int i = 0; i < nghosts; ++i)
- ghosts.push_back( unmarshallGhost(th) );
+ ghosts.push_back(unmarshallGhost(th));
}