Remove rows that aren't applicable to HomeEditMode

This commit is contained in:
Chris Danford
2005-03-07 18:26:30 +00:00
parent 8129cfc0ba
commit 1a2619f445
4 changed files with 119 additions and 105 deletions
+4 -4
View File
@@ -45,10 +45,10 @@ enum CourseEntryMenuRow
static const MenuRow g_CourseOptionsMenuItems[] =
{
{ "Repeat", true, 0, { "NO","YES" } },
{ "Randomize", true, 0, { "NO","YES" } },
{ "Lives", true, 4, { "Use Bar Life","1","2","3","4","5","6","7","8","9","10" } },
{ NULL, true, 0, { NULL } }
{ "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 } }
};
static Menu g_CourseOptionsMenu( "Course Options", g_CourseOptionsMenuItems );