[Super-tux-commit] supertux/src title.cpp,1.81.2.5,1.81.2.6
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-08-12 19:06:20
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14464/src Modified Files: Tag: supertux_0_1_1_branch title.cpp Log Message: Contrib levels were not working fine. Bug reported by unDEFER. Index: title.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v retrieving revision 1.81.2.5 retrieving revision 1.81.2.6 diff -u -d -r1.81.2.5 -r1.81.2.6 --- title.cpp 10 Aug 2004 11:34:25 -0000 1.81.2.5 +++ title.cpp 12 Aug 2004 19:06:09 -0000 1.81.2.6 @@ -131,8 +131,8 @@ { /** get level's title */ Level level; - level.load(subset.name, i); - contrib_subset_menu->additem(MN_ACTION, level.name, 0,0,i); + level.load(subset.name, i+1); + contrib_subset_menu->additem(MN_ACTION, level.name, 0,0,i+1); } contrib_subset_menu->additem(MN_HL,"",0,0); |