summaryrefslogtreecommitdiff
path: root/src/help_info.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-06-20 22:49:05 +0200
committerBardur Arantsson <bardur@scientician.net>2016-06-20 22:49:05 +0200
commitf1af5f03ccd79006fa1536e00ac699272aebc5a0 (patch)
tree75442a0379af7ea6db15b703882ae3589600cf74 /src/help_info.hpp
parentc1f61900360d9dcd17382f37f16a75184c99844a (diff)
Change player_type to non-POD type
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..0960af77 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? */
};