[Super-tux-commit] supertux/src menu.cpp,1.47,1.48
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-04-22 17:51:12
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14376/src Modified Files: menu.cpp Log Message: Removed a few useless code (it was commented anyway). Index: menu.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/menu.cpp,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- menu.cpp 22 Apr 2004 14:11:57 -0000 1.47 +++ menu.cpp 22 Apr 2004 17:51:03 -0000 1.48 @@ -329,8 +329,6 @@ Menu::set_current(0); item[active_item].toggled = true; break; - case MN_CONTROLFIELD: - break; case MN_BACK: Menu::pop_current(); @@ -515,32 +513,6 @@ A_HMIDDLE, A_VMIDDLE, shadow_size); break; } -// case MN_CONTROLFIELD: -// { - /* display key */ // FIXME: the key number is not that obvious to the user :P -/* char str[12]; - sprintf(str, "%i", *pitem.int_p); - input_width = strlen(str) * font_width; - - int input_pos = input_width/2; - int text_pos = (text_width + font_width)/2; - - fillrect(x_pos - input_pos + text_pos - 1, y_pos - 10, - input_width + font_width + 2, 20, - 255,255,255,255); - fillrect(x_pos - input_pos + text_pos, y_pos - 9, - input_width + font_width, 18, - 0,0,0,128); - - gold_text->draw_align(str, - x_pos + text_pos, y_pos, - A_HMIDDLE, A_VMIDDLE, 2); - - text_font->draw_align(pitem.text, - x_pos - (input_width + font_width)/2, y_pos, - A_HMIDDLE, A_VMIDDLE, shadow_size); - break; - }*/ case MN_STRINGSELECT: { int list_pos_2 = list_width + font_width; |