[Super-tux-commit] supertux/src level_subset.cpp,1.2,1.3
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-07-08 11:40:48
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31815/src Modified Files: level_subset.cpp Log Message: Let title and description of subsets to be translatable. By the way, is description field really needed? Why not just get rid of it? Index: level_subset.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/level_subset.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- level_subset.cpp 16 Jun 2004 00:40:42 -0000 1.2 +++ level_subset.cpp 8 Jul 2004 11:40:40 -0000 1.3 @@ -61,8 +61,8 @@ { 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 |