From 6864dbe3fc2c68842967f0ae7085ee2a90532472 Mon Sep 17 00:00:00 2001 From: asc Date: Sat, 25 Jan 2014 14:00:10 -0800 Subject: [PATCH] Remove mode option --- src/interface.c | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/src/interface.c b/src/interface.c index 98cc61e5..054e0374 100644 --- a/src/interface.c +++ b/src/interface.c @@ -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) {