From 02332629664a9d0092a9bc22693fa7801e858221 Mon Sep 17 00:00:00 2001 From: Charlie Birks Date: Mon, 12 Jun 2023 12:35:06 +0100 Subject: [PATCH] sdl: set SDL_WINDOW_ALLOW_HIDPI Everything is already automatically scaled by the renderer --- 32blit-sdl/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/32blit-sdl/Main.cpp b/32blit-sdl/Main.cpp index c043fb0ef..07618800d 100644 --- a/32blit-sdl/Main.cpp +++ b/32blit-sdl/Main.cpp @@ -220,7 +220,7 @@ int main(int argc, char *argv[]) { metadata_title, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, System::width*2, System::height*2, - SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE + SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI ); if (window == nullptr) {