summaryrefslogtreecommitdiff
path: root/src/wizard2.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
commit7ccb0c1a48d571abd6dc3aca725275e2d264aa2d (patch)
treecf8704730d08eb3567e9de519f768b6f8baae4af /src/wizard2.cc
parent667acd0e312301ad613b6a71f843c51d2062aee6 (diff)
Change strings in dungeon_info_type to std::string
Diffstat (limited to 'src/wizard2.cc')
-rw-r--r--src/wizard2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wizard2.cc b/src/wizard2.cc
index 5c4ff5cd..046fd80c 100644
--- a/src/wizard2.cc
+++ b/src/wizard2.cc
@@ -1577,7 +1577,7 @@ void do_cmd_debug()
{
dungeon_type = command_arg;
dun_level = d_info[dungeon_type].mindepth;
- msg_format("You go into %s", d_info[dungeon_type].text);
+ msg_format("You go into %s", d_info[dungeon_type].text.c_str());
/* Leaving */
p_ptr->leaving = TRUE;