summaryrefslogtreecommitdiff
path: root/src/player_race.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/player_race.hpp')
-rw-r--r--src/player_race.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/player_race.hpp b/src/player_race.hpp
index 560ba34f..a2f4699c 100644
--- a/src/player_race.hpp
+++ b/src/player_race.hpp
@@ -12,6 +12,7 @@
#include "skill_modifiers.hpp"
#include <array>
+#include <string>
#include <vector>
@@ -20,8 +21,8 @@
*/
struct player_race
{
- const char *title = nullptr; /* Type of race */
- char *desc = nullptr;
+ std::string title; /* Type of race */
+ std::string desc;
char luck = '\0'; /* Luck */