Skip to content

Commit

Permalink
CVideo: disabled SDL_WINDOW_ALLOW_HIGHDPI for now
Browse files Browse the repository at this point in the history
This was cusing issues on macOS. Will re-enable once I get high-DPI support working properly.
  • Loading branch information
Vultraz committed Jul 23, 2017
1 parent 4ed729c commit 1ab8fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video.cpp
Expand Up @@ -158,7 +158,7 @@ void CVideo::init_window()
int video_flags = 0;

// Add any more default flags here
video_flags |= SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI;
video_flags |= SDL_WINDOW_RESIZABLE /*| SDL_WINDOW_ALLOW_HIGHDPI*/;
#ifdef USE_GL_RENDERING
video_flags |= SDL_WINDOW_OPENGL;
#endif
Expand Down

0 comments on commit 1ab8fd2

Please sign in to comment.