mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-23 11:31:41 +00:00
Remove mode option
This commit is contained in:
parent
1009d4e708
commit
6864dbe3fc
@ -721,7 +721,6 @@ typedef enum interface_enum_t {
|
||||
OPT_CPU = 0,
|
||||
OPT_ALTCPU,
|
||||
OPT_PATH,
|
||||
//OPT_MODE,
|
||||
OPT_COLOR,
|
||||
OPT_VIDEO,
|
||||
OPT_VOLUME,
|
||||
@ -737,7 +736,6 @@ static const char *options[] =
|
||||
" CPU% : ",
|
||||
" ALT CPU% : ",
|
||||
" Path : ",
|
||||
//" Mode : ",
|
||||
" Color : ",
|
||||
" Video : ",
|
||||
" Volume : ",
|
||||
@ -841,14 +839,6 @@ void c_interface_parameters()
|
||||
temp[INTERFACE_PATH_MAX] = '\0';
|
||||
break;
|
||||
|
||||
#if 0
|
||||
case OPT_MODE:
|
||||
sprintf(temp, "%s", (apple_mode == 0) ? "][+ " :
|
||||
(apple_mode == 1) ? "][+ undocumented" :
|
||||
"//e ");
|
||||
break;
|
||||
#endif
|
||||
|
||||
case OPT_COLOR:
|
||||
sprintf(temp, "%s", (color_mode == COLOR) ? "Color " :
|
||||
(color_mode == COLOR_INTERP) ? "Interpolated" : "Black/White ");
|
||||
@ -1004,16 +994,6 @@ void c_interface_parameters()
|
||||
}
|
||||
break;
|
||||
|
||||
#if 0
|
||||
case OPT_MODE:
|
||||
apple_mode--;
|
||||
if (apple_mode < 0)
|
||||
{
|
||||
apple_mode = 2;
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case OPT_COLOR:
|
||||
if (color_mode == 0)
|
||||
{
|
||||
@ -1109,16 +1089,6 @@ void c_interface_parameters()
|
||||
}
|
||||
break;
|
||||
|
||||
#if 0
|
||||
case OPT_MODE:
|
||||
apple_mode++;
|
||||
if (apple_mode > 2)
|
||||
{
|
||||
apple_mode = 0;
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case OPT_COLOR:
|
||||
if (color_mode == NUM_COLOROPTS-1)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user