video: Bump default window size to 800x600.

640x480 was the default for a long time but modern monitors are higher
resolution and now we use hardware scaling there's no reason to hold
back for any CPU reason. 800x600 is also a good default because on 2x
retina displays it doubles up to 1600x1200 which is a perfect integer
scale-up.
This commit is contained in:
Simon Howard 2018-10-29 19:32:42 -04:00
parent 301a9f0428
commit 2bfb1bbabb
2 changed files with 3 additions and 3 deletions

View file

@ -110,8 +110,8 @@ int video_display = 0;
// Screen width and height, from configuration file.
int window_width = SCREENWIDTH * 2;
int window_height = SCREENHEIGHT_4_3 * 2;
int window_width = 800;
int window_height = 600;
// Fullscreen mode, 0x0 for SDL_WINDOW_FULLSCREEN_DESKTOP.

View file

@ -71,7 +71,7 @@ static int vga_porch_flash = 0;
static int force_software_renderer = 0;
static int fullscreen = 1;
static int fullscreen_width = 0, fullscreen_height = 0;
static int window_width = 640, window_height = 480;
static int window_width = 800, window_height = 600;
static int startup_delay = 1000;
static int max_scaling_buffer_pixels = 16000000;
static int usegamma = 0;