Compare commits

...

1 Commits

Author SHA1 Message Date
Linus Probert 68f56b7550
Attempt at scaling for small screens 2020-07-11 14:45:50 +02:00
1 changed files with 3 additions and 2 deletions

View File

@ -204,8 +204,9 @@ bool initSDL(void)
Dimension dim = getScreenDimensions();
if (dim.height > 1080) {
info("Hi resolution screen detected (%u x %u)", dim.width, dim.height);
if (dim.height != 1080) {
info("Different resolution screen detected (%u x %u)", dim.width, dim.height);
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "0");
renderScale = ((double) dim.height)/1080;
info("Scaling by %f", renderScale);
}