mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-22 11:29:24 +01:00
Remove 1-1
This commit is contained in:
parent
4a8186f747
commit
fe89785105
@ -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
|
||||
|
@ -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,
|
||||
};
|
||||
|
||||
|
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user