summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-24 01:35:42 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-24 02:06:53 -0400
commit2d06bffd5ab5043f7c4cfe67328844405078ee07 (patch)
treee8dde0ac9aaf3e002adb5255902957c191a30196 /crawl-ref/source/abyss.cc
parentf638c35fa00d49858e26e5c095e56f24705d8408 (diff)
downloadcrawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.tar.gz
crawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.zip
Chance function(void) to function()
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index f7ae34c70b..b425cc2ae5 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -71,8 +71,8 @@ static sample_queue abyss_sample_queue;
static vector<dungeon_feature_type> abyssal_features;
static list<monster*> displaced_monsters;
-static void abyss_area_shift(void);
-static void _push_items(void);
+static void abyss_area_shift();
+static void _push_items();
static void _push_displaced_monster(monster* mon);
// If not_seen is true, don't place the feature where it can be seen from
@@ -1356,7 +1356,7 @@ void set_abyss_state(coord_def coord, uint32_t depth)
_abyss_apply_terrain(abyss_genlevel_mask, true, true);
}
-static void abyss_area_shift(void)
+static void abyss_area_shift()
{
dprf(DIAG_ABYSS, "area_shift() - player at pos (%d, %d)",
you.pos().x, you.pos().y);