diff --git a/source/images/bg_game_selection.png b/source/images/bg_game_selection.png index 9a5e6ed..5f58eb6 100644 Binary files a/source/images/bg_game_selection.png and b/source/images/bg_game_selection.png differ diff --git a/source/images/bg_game_selection_entry.png b/source/images/bg_game_selection_entry.png index c7627dc..afa4d5f 100644 Binary files a/source/images/bg_game_selection_entry.png and b/source/images/bg_game_selection_entry.png differ diff --git a/source/images/bg_preview.png b/source/images/bg_preview.png index a11ad20..a6bf6c1 100644 Binary files a/source/images/bg_preview.png and b/source/images/bg_preview.png differ diff --git a/source/menu.cpp b/source/menu.cpp index ccffc08..534bb1b 100644 --- a/source/menu.cpp +++ b/source/menu.cpp @@ -4658,8 +4658,6 @@ MainMenu (int menu) mainWindow->Append(bgBottomImg); mainWindow->Append(btnLogo); - printf("in main menu()\n"); - if(currentMenu == MENU_GAMESELECTION) ResumeGui(); diff --git a/source/video.cpp b/source/video.cpp index bcbd75b..0130b4a 100644 --- a/source/video.cpp +++ b/source/video.cpp @@ -324,35 +324,12 @@ static GXRModeObj * FindVideoMode() progressive = false; #ifdef HW_RVL - bool pal = false; + if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) + mode->viWidth = 678; + else + mode->viWidth = 672; - if (mode == &TVPal576IntDfScale) - pal = true; - - /*if (CONF_GetAspectRatio() == CONF_ASPECT_16_9 && mode->xfbHeight != 240) - { - if (pal) - { - mode = &TVPal528IntDf; - mode->xfbHeight = 542; - mode->viHeight = 542; - } - else - { - mode->xfbHeight = 456; - mode->viHeight = 456; - } - - mode->fbWidth = 640; - mode->efbHeight = 456; - mode->viWidth = 686; - } - else*/ - { - mode->viWidth = 704; - } - - if (pal) + if (mode->viTVMode >> 2 == VI_PAL) { mode->viXOrigin = (VI_MAX_WIDTH_PAL - mode->viWidth) / 2; mode->viYOrigin = (VI_MAX_HEIGHT_PAL - mode->viHeight) / 2; @@ -363,7 +340,6 @@ static GXRModeObj * FindVideoMode() mode->viYOrigin = (VI_MAX_HEIGHT_NTSC - mode->viHeight) / 2; } #endif - return mode; }