From 163f2a127efc850055bdee49ac57a54e37896a88 Mon Sep 17 00:00:00 2001 From: Ricardo Cruz Date: Thu, 8 Jul 2004 11:40:40 +0000 Subject: [PATCH] Let title and description of subsets to be translatable. By the way, is description field really needed? Why not just get rid of it? SVN-Revision: 1547 --- src/level_subset.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/level_subset.cpp b/src/level_subset.cpp index 25785d164..a35c6890d 100644 --- a/src/level_subset.cpp +++ b/src/level_subset.cpp @@ -61,8 +61,8 @@ void LevelSubset::read_info_file(const std::string& info_file) { LispReader reader(lisp_cdr(root_obj)); - reader.read_string("title", title); - reader.read_string("description", description); + reader.read_string("title", title, true); + reader.read_string("description", description, true); reader.read_string_vector("levels", levels); } else -- 2.11.0