fix menu items are offset in home edit mode

This commit is contained in:
Chris Danford
2005-03-07 19:45:45 +00:00
parent 1a2619f445
commit e00de06b3f
5 changed files with 193 additions and 127 deletions
+4 -4
View File
@@ -45,10 +45,10 @@ enum CourseEntryMenuRow
static const MenuRow g_CourseOptionsMenuItems[] =
{
{ "Repeat", true, true, 0, { "NO","YES" } },
{ "Randomize", true, true, 0, { "NO","YES" } },
{ "Lives", true, true, 4, { "Use Bar Life","1","2","3","4","5","6","7","8","9","10" } },
{ NULL, true, true, 0, { NULL } }
{ repeat, "Repeat", true, true, 0, { "NO","YES" } },
{ randomize, "Randomize", true, true, 0, { "NO","YES" } },
{ lives, "Lives", true, true, 4, { "Use Bar Life","1","2","3","4","5","6","7","8","9","10" } },
{ -1, NULL, true, true, 0, { NULL } }
};
static Menu g_CourseOptionsMenu( "Course Options", g_CourseOptionsMenuItems );