From: Ricardo Cruz Date: Thu, 8 Jul 2004 11:40:40 +0000 (+0000) Subject: Let title and description of subsets to be translatable. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=163f2a127efc850055bdee49ac57a54e37896a88;p=supertux.git 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 --- 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