summaryrefslogtreecommitdiff
path: root/src/fate.hpp
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
commitcf174d71d2b56fb40248d96707090a484b4957fc (patch)
treeca2666f5f0aabca22b45f2f87baf19be296ac0af /src/fate.hpp
parent79d1633d51015b2a9224dece9da083ff1ab8b7c2 (diff)
Search/replace bool_ with bool
We also search/replace TRUE/FALSE with their bool equivalents.
Diffstat (limited to 'src/fate.hpp')
-rw-r--r--src/fate.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fate.hpp b/src/fate.hpp
index 2f501e4b..948adb51 100644
--- a/src/fate.hpp
+++ b/src/fate.hpp
@@ -17,6 +17,6 @@ struct fate
s16b r_idx; /* Monster to find */
s16b count; /* Number of things */
s16b time; /* Turn before */
- bool_ know; /* Has it been predicted? */
- bool_ icky; /* Hackish runtime-only flag */
+ bool know; /* Has it been predicted? */
+ bool icky; /* Hackish runtime-only flag */
};