summaryrefslogtreecommitdiff
path: root/src/q_god.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-04-09 15:37:46 +0200
committerBardur Arantsson <bardur@scientician.net>2012-04-09 15:37:46 +0200
commitb92fe01dfebbfed138d0cec1ac23c608be881dfc (patch)
tree19d77cb184df3fd76205ea937c5cdec6c951906d /src/q_god.c
parent83d568690a9250b87d9d982170e1a8918364dea2 (diff)
Lua: God quests: Make more functions static
Diffstat (limited to 'src/q_god.c')
-rw-r--r--src/q_god.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/q_god.c b/src/q_god.c
index 0c90985a..ecc26d96 100644
--- a/src/q_god.c
+++ b/src/q_god.c
@@ -295,7 +295,7 @@ bool_ quest_god_describe(FILE *fff)
return TRUE;
}
-void quest_god_place_rand_dung()
+static void quest_god_place_rand_dung()
{
int x = -1, y = -1, tries;
@@ -362,7 +362,7 @@ void quest_god_place_rand_dung()
cquest_dung_y = y;
}
-void quest_god_generate_relic()
+static void quest_god_generate_relic()
{
int tries = 1000, x = -1, y = -1;
object_type relic;
@@ -919,7 +919,7 @@ static bool_ quest_god_level_end_gen_hook(char *fmt)
return FALSE;
}
-bool_ quest_god_player_level_hook(char *fmt)
+static bool_ quest_god_player_level_hook(char *fmt)
{
s32b gained = get_next_arg(fmt);
@@ -979,7 +979,7 @@ bool_ quest_god_player_level_hook(char *fmt)
return FALSE;
}
-bool_ quest_god_get_hook(char *fmt)
+static bool_ quest_god_get_hook(char *fmt)
{
s32b item;
object_type *o_ptr = NULL;