Remove 1-1

This commit is contained in:
simon.kagstrom 2009-01-09 19:26:52 +00:00
parent 4a8186f747
commit fe89785105
3 changed files with 5 additions and 8 deletions

View File

@ -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

View File

@ -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,
};

View File

@ -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};