Skip to content

Commit

Permalink
do not set window default size to twice the native framebuffer resolu…
Browse files Browse the repository at this point in the history
…tion

Fixes #254, thanks @JNechaevsky
  • Loading branch information
fabiangreffrath committed Jan 15, 2018
1 parent 1508923 commit 416220d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/i_video.c
Expand Up @@ -112,8 +112,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 = SCREENWIDTH; // hires
int window_height = SCREENHEIGHT_4_3; // hires

// Fullscreen mode, 0x0 for SDL_WINDOW_FULLSCREEN_DESKTOP.

Expand Down

0 comments on commit 416220d

Please sign in to comment.