Remove the no longer required translation

...marker and avoid sending a c_str() to a function which expects a
std::string.
This commit is contained in:
Mark de Wever 2007-07-20 16:55:36 +00:00
parent 3a9daf8071
commit 2cb6058ac4

View File

@ -163,7 +163,7 @@ static void draw_tip_of_day(game_display& screen, config& tips_of_day, int* ntip
tip_of_day = font::word_wrap_text(tip_of_day,font::SIZE_NORMAL,
(game_config::title_tip_width*screen.w())/1024);
const std::string& tome = font::word_wrap_text(_(game_config::tome_title.c_str()),
const std::string& tome = font::word_wrap_text(game_config::tome_title,
font::SIZE_NORMAL,
(game_config::title_tip_width*screen.w())/1024);