summaryrefslogtreecommitdiff
path: root/src/help_info.hpp
diff options
context:
space:
mode:
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 ea440bb9..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; /* ingame help enabled */
- bool_ activated[HELP_MAX]; /* help item #i activated? */
+ bool enabled = false; /* ingame help enabled */
+ bool activated[HELP_MAX] = { false }; /* help item #i activated? */
};