summaryrefslogtreecommitdiff
path: root/src/help_info.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
commit5a3f511fd036dd73152786e83f32c32f274f2398 (patch)
tree7a90c6b860ddd225802df000059a7e02da805326 /src/help_info.hpp
parentd52879d4ed58423e1e9ccc7f5dc34d237a295527 (diff)
Use 'bool' in struct help_info
Diffstat (limited to 'src/help_info.hpp')
-rw-r--r--src/help_info.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help_info.hpp b/src/help_info.hpp
index 0960af77..1b4a3757 100644
--- a/src/help_info.hpp
+++ b/src/help_info.hpp
@@ -12,6 +12,6 @@ constexpr int HELP_MAX = 64;
*/
struct help_info
{
- bool_ enabled = FALSE; /* ingame help enabled */
- bool_ activated[HELP_MAX] = { FALSE }; /* help item #i activated? */
+ bool enabled = false; /* ingame help enabled */
+ bool activated[HELP_MAX] = { false }; /* help item #i activated? */
};