diff --git a/CHANGES.WII b/CHANGES.WII index 86654f2..6f7730a 100644 --- a/CHANGES.WII +++ b/CHANGES.WII @@ -1,4 +1,7 @@ version 2: + * Remove the 1-1 graphics option and make stretched the default. Should avoid + "helpful and constructive" messages such as + http://wiinewz.com/forums/nintendo-news/91829-frodo-v1-0-a.html#post580580 * Improved speed just a bit * Only save prefs on exit * Pause sound in the menu diff --git a/Src/C64_SDL.i b/Src/C64_SDL.i index 7d4bf56..c47f3bf 100644 --- a/Src/C64_SDL.i +++ b/Src/C64_SDL.i @@ -39,9 +39,8 @@ static const char *main_menu_messages[] = { }; static const char *display_option_messages[] = { - "1-1 resolution", /* 0 */ - "double resolution, centered", /* 1 */ - "full-screen stretched", /* 2 */ + "double resolution, centered", /* 0 */ + "full-screen stretched", /* 1 */ NULL, }; diff --git a/Src/Display_SDL.i b/Src/Display_SDL.i index 8d9895b..09697f7 100644 --- a/Src/Display_SDL.i +++ b/Src/Display_SDL.i @@ -148,11 +148,6 @@ void C64Display::Update(void) SDL_Rect srcrect, dstrect; if (ThePrefs.DisplayOption == 0) { - /* Normal */ - srcrect = (SDL_Rect){0, 0, DISPLAY_X, DISPLAY_Y}; - dstrect = (SDL_Rect){0, 0, DISPLAY_X, DISPLAY_Y}; - } - else if (ThePrefs.DisplayOption == 1) { /* Center, double size */ srcrect = (SDL_Rect){32, 14, FULL_DISPLAY_X / 2, FULL_DISPLAY_Y / 2}; dstrect = (SDL_Rect){0, 0, FULL_DISPLAY_X, FULL_DISPLAY_Y};