summaryrefslogtreecommitdiff
path: root/src/quest_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quest_type.hpp')
-rw-r--r--src/quest_type.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quest_type.hpp b/src/quest_type.hpp
index 19d9cc87..267ba4d2 100644
--- a/src/quest_type.hpp
+++ b/src/quest_type.hpp
@@ -21,9 +21,9 @@ struct quest_type
s16b *plot; /* Which plot does it belongs to? */
- bool_ (*init)(int q); /* Function that takes care of generating hardcoded quests */
+ bool_ (*init)(); /* Function that takes care of generating hardcoded quests */
- s32b data[9]; /* Various datas used by the quests */
+ s32b data[9]; /* Various datas used by the quests */
std::string (*gen_desc)(); /* Function for generating description. */
};