summaryrefslogtreecommitdiff
path: root/src/dungeon.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:40 +0100
committerBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:40 +0100
commit5a1497b285b2aaad6c8945b9014c5ccd899af695 (patch)
treea33053c11db972f3b017851945a812c62fd25ce7 /src/dungeon.cc
parent7bdfa1a20c8921e53baecdd12b48870417f8b426 (diff)
Split dungeon.cc declarations into separate header files
Diffstat (limited to 'src/dungeon.cc')
-rw-r--r--src/dungeon.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/dungeon.cc b/src/dungeon.cc
index ebd36f29..12524b1b 100644
--- a/src/dungeon.cc
+++ b/src/dungeon.cc
@@ -6,6 +6,9 @@
* included in all such copies.
*/
+#include "dungeon.hpp"
+#include "dungeon.h"
+
#include "angband.h"
#include "birth.hpp"
#include "cave.hpp"
@@ -865,7 +868,7 @@ static void check_music()
/*
* Generate the feature effect
*/
-void apply_effect(int y, int x)
+static void apply_effect(int y, int x)
{
cave_type *c_ptr = &cave[y][x];
@@ -910,7 +913,7 @@ void apply_effect(int y, int x)
/* XXX XXX XXX */
-bool_ is_recall = FALSE;
+static bool_ is_recall = FALSE;
/*
@@ -4194,7 +4197,7 @@ static void process_command(void)
* must come first just in case somebody manages to corrupt
* the savefiles by clever use of menu commands or something.
*/
-void process_player(void)
+static void process_player(void)
{
int i, j;