summaryrefslogtreecommitdiff
path: root/src/random_spell.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
commitd52879d4ed58423e1e9ccc7f5dc34d237a295527 (patch)
tree50adeff497e50e54658fc24f39461b2e3ba160f7 /src/random_spell.hpp
parente569b328d76c7437018eb11efcc0aa10bbd91de6 (diff)
Use 'bool' in random_spell struct
Diffstat (limited to 'src/random_spell.hpp')
-rw-r--r--src/random_spell.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random_spell.hpp b/src/random_spell.hpp
index 01b5ba5e..2c814c9f 100644
--- a/src/random_spell.hpp
+++ b/src/random_spell.hpp
@@ -17,5 +17,5 @@ struct random_spell
byte dam_sides;
byte dam_dice;
byte level; /* Level needed */
- bool_ untried; /* Is the spell was tried? */
+ bool untried; /* Is the spell was tried? */
};