Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirk <kklobe@gmail.com>2022-08-20 22:58:15 +0300
committerKirk <kklobe@gmail.com>2022-08-20 22:58:15 +0300
commit821de5ce81a711b6516d7959551ced41e2cb831c (patch)
tree6fe039017c6e4f2e577e5d3eb461f3bca45f25df
parent873e6cd7068c65026b5c53d87d6aedece6846d30 (diff)
Disable HighDPI for debugger windowkk/debugger-no-highdpi-1
-rw-r--r--src/libs/PDCurses/sdl2_queue/pdcscrn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/PDCurses/sdl2_queue/pdcscrn.cpp b/src/libs/PDCurses/sdl2_queue/pdcscrn.cpp
index b1675ec68..152115744 100644
--- a/src/libs/PDCurses/sdl2_queue/pdcscrn.cpp
+++ b/src/libs/PDCurses/sdl2_queue/pdcscrn.cpp
@@ -277,7 +277,7 @@ int PDC_scr_open(void)
env = getenv("PDC_COLS");
pdc_swidth = (env ? atoi(env) : 80) * pdc_fwidth;
- constexpr uint32_t flags = SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI;
+ constexpr uint32_t flags = SDL_WINDOW_RESIZABLE;
pdc_window = SDL_CreateWindow("PDCurses",
SDL_WINDOWPOS_CENTERED_DISPLAY(displaynum),