From f2151483d7a44667978b1c3d8c4581f1d344d097 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 6 Feb 2013 09:54:22 +0100 Subject: [PATCH] (GX) Remove 640x576 VI width/height option - height too big for EFB --- frontend/menu/rgui.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/menu/rgui.c b/frontend/menu/rgui.c index c6801ddfc3..6a7aa43d0a 100644 --- a/frontend/menu/rgui.c +++ b/frontend/menu/rgui.c @@ -71,8 +71,6 @@ enum GX_RESOLUTIONS_640_288, GX_RESOLUTIONS_640_448, GX_RESOLUTIONS_640_480, - GX_RESOLUTIONS_640_576, - GX_RESOLUTIONS_DEFAULT, GX_RESOLUTIONS_LAST, }; @@ -115,11 +113,9 @@ unsigned rgui_gx_resolutions[GX_RESOLUTIONS_LAST][2] = { { 640, 288 }, { 640, 448 }, { 640, 480 }, - { 640, 576 }, - { 0, 0 } }; -unsigned rgui_current_gx_resolution = GX_RESOLUTIONS_DEFAULT; +unsigned rgui_current_gx_resolution = GX_RESOLUTIONS_640_480; #endif unsigned RGUI_WIDTH = 320;