[Super-tux-commit] supertux/src menu.cpp,1.71,1.72
Brought to you by:
wkendrick
From: Ryan F. <sik...@us...> - 2004-05-14 05:14:38
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3401 Modified Files: menu.cpp Log Message: - uncomment crash fix that was accidentally commented Index: menu.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/menu.cpp,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- menu.cpp 14 May 2004 02:44:34 -0000 1.71 +++ menu.cpp 14 May 2004 05:14:30 -0000 1.72 @@ -490,8 +490,8 @@ menuaction = MENU_ACTION_NONE; - //if (active_item >= int(item.size())) - // active_item = int(item.size()) - 1; + if (active_item >= int(item.size())) + active_item = int(item.size()) - 1; } int |