summaryrefslogtreecommitdiff
path: root/src/random_quest.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:14 +0200
commite569b328d76c7437018eb11efcc0aa10bbd91de6 (patch)
treeae652a702a6c13cb09bf0c154e14335f4ea75f31 /src/random_quest.hpp
parent6e8536619890fbf36b6a890a92627d87b8b92842 (diff)
Use 'bool' in random_quest struct
Diffstat (limited to 'src/random_quest.hpp')
-rw-r--r--src/random_quest.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random_quest.hpp b/src/random_quest.hpp
index 11ebe797..9e3c6e10 100644
--- a/src/random_quest.hpp
+++ b/src/random_quest.hpp
@@ -6,5 +6,5 @@ struct random_quest
{
byte type; /* Type/number of monsters to kill(0 = no quest) */
s16b r_idx; /* Monsters to crush */
- bool_ done; /* Done ? */
+ bool done; /* Done? */
};