summaryrefslogtreecommitdiff
path: root/src/q_evil.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-02-20 19:54:40 +0100
committerBardur Arantsson <bardur@scientician.net>2011-02-20 20:56:41 +0100
commit5fbe06613a8a9e5d8731a832ddff0e9bdce112bb (patch)
tree4ab5267304509feed1bbcf4ad265cd8597c64fce /src/q_evil.c
parent420428c53fe83064331ac2e06297c8a93abc93cf (diff)
Remove redefinition of "bool" for C++ friendliness.
Diffstat (limited to 'src/q_evil.c')
-rw-r--r--src/q_evil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/q_evil.c b/src/q_evil.c
index 1e5a19bb..33a01d29 100644
--- a/src/q_evil.c
+++ b/src/q_evil.c
@@ -1,7 +1,7 @@
#undef cquest
#define cquest (quest[QUEST_EVIL])
-bool quest_evil_gen_hook(char *fmt)
+bool_ quest_evil_gen_hook(char *fmt)
{
int x, y, i;
int xstart = 2;
@@ -54,7 +54,7 @@ bool quest_evil_gen_hook(char *fmt)
return TRUE;
}
-bool quest_evil_death_hook(char *fmt)
+bool_ quest_evil_death_hook(char *fmt)
{
int i, mcnt = 0;
@@ -88,7 +88,7 @@ bool quest_evil_death_hook(char *fmt)
return FALSE;
}
-bool quest_evil_finish_hook(char *fmt)
+bool_ quest_evil_finish_hook(char *fmt)
{
s32b q_idx;
@@ -105,7 +105,7 @@ bool quest_evil_finish_hook(char *fmt)
return TRUE;
}
-bool quest_evil_init_hook(int q_idx)
+bool_ quest_evil_init_hook(int q_idx)
{
if ((cquest.status >= QUEST_STATUS_UNTAKEN) && (cquest.status < QUEST_STATUS_FINISHED))
{