summaryrefslogtreecommitdiff
path: root/src/help_info.hpp
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2020-05-22 20:05:37 -0700
committerManoj Srivastava <srivasta@debian.org>2020-05-22 21:39:31 -0700
commit035291b7f18974925f9a85a41e057bdc462c75f1 (patch)
treed69056be1a045aec185393b52dadb6fc2d5f50c9 /src/help_info.hpp
parent9714b44a37dfc03aa00187726beea7ed8257415e (diff)
parent4e9b9c402ed95bf9a17fd6d795bc49bb4128a6fa (diff)
Merge branch 'upstream'
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? */
};