Remove mode option

This commit is contained in:
asc 2014-01-25 14:00:10 -08:00
parent 1009d4e708
commit 6864dbe3fc

View File

@ -721,7 +721,6 @@ typedef enum interface_enum_t {
OPT_CPU = 0, OPT_CPU = 0,
OPT_ALTCPU, OPT_ALTCPU,
OPT_PATH, OPT_PATH,
//OPT_MODE,
OPT_COLOR, OPT_COLOR,
OPT_VIDEO, OPT_VIDEO,
OPT_VOLUME, OPT_VOLUME,
@ -737,7 +736,6 @@ static const char *options[] =
" CPU% : ", " CPU% : ",
" ALT CPU% : ", " ALT CPU% : ",
" Path : ", " Path : ",
//" Mode : ",
" Color : ", " Color : ",
" Video : ", " Video : ",
" Volume : ", " Volume : ",
@ -841,14 +839,6 @@ void c_interface_parameters()
temp[INTERFACE_PATH_MAX] = '\0'; temp[INTERFACE_PATH_MAX] = '\0';
break; break;
#if 0
case OPT_MODE:
sprintf(temp, "%s", (apple_mode == 0) ? "][+ " :
(apple_mode == 1) ? "][+ undocumented" :
"//e ");
break;
#endif
case OPT_COLOR: case OPT_COLOR:
sprintf(temp, "%s", (color_mode == COLOR) ? "Color " : sprintf(temp, "%s", (color_mode == COLOR) ? "Color " :
(color_mode == COLOR_INTERP) ? "Interpolated" : "Black/White "); (color_mode == COLOR_INTERP) ? "Interpolated" : "Black/White ");
@ -1004,16 +994,6 @@ void c_interface_parameters()
} }
break; break;
#if 0
case OPT_MODE:
apple_mode--;
if (apple_mode < 0)
{
apple_mode = 2;
}
break;
#endif
case OPT_COLOR: case OPT_COLOR:
if (color_mode == 0) if (color_mode == 0)
{ {
@ -1109,16 +1089,6 @@ void c_interface_parameters()
} }
break; break;
#if 0
case OPT_MODE:
apple_mode++;
if (apple_mode > 2)
{
apple_mode = 0;
}
break;
#endif
case OPT_COLOR: case OPT_COLOR:
if (color_mode == NUM_COLOROPTS-1) if (color_mode == NUM_COLOROPTS-1)
{ {