summaryrefslogtreecommitdiff
path: root/src/q_fireprof.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
committerBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
commit00518e2030b0ddf66777ee71301017b78220d006 (patch)
tree726fced33c63a0d694d0672a931f10cefdda3d41 /src/q_fireprof.cc
parent98236a1479abfbd28d10313e376721608e2f5643 (diff)
Replace uses of bool_ with bool
"Only" 988 mentions of bool_ left!
Diffstat (limited to 'src/q_fireprof.cc')
-rw-r--r--src/q_fireprof.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/q_fireprof.cc b/src/q_fireprof.cc
index 343aaa9f..7093b058 100644
--- a/src/q_fireprof.cc
+++ b/src/q_fireprof.cc
@@ -225,7 +225,7 @@ static bool_ fireproof()
}
-void quest_fireproof_building(bool_ *paid, bool_ *recreate)
+void quest_fireproof_building(bool *paid, bool *recreate)
{
fireproof_settings const *settings = fireproof_get_settings();
int num_books, num_staff, num_scroll;
@@ -246,8 +246,8 @@ void quest_fireproof_building(bool_ *paid, bool_ *recreate)
msg_print("fetch it myself. Please bring it back to me. You can find it north of here.");
msg_print("Be careful with it, it's fragile and might be destroyed easily.");
- *paid = FALSE;
- *recreate = TRUE;
+ *paid = false;
+ *recreate = true;
}
/* if quest completed (item was retrieved) */