diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2021-01-24 22:32:02 +0100 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2021-01-24 22:32:13 +0100 |
commit | b9a56bc4e47bbb315f88ba5eaa57ce2b3efece73 (patch) | |
tree | bd53d6108f5fd9bf60174d21cf80c969271411f3 /src/frontend/qt_sdl/PlatformConfig.cpp | |
parent | 536902d61088f10acfb4deb38a17ac6f2badc3d3 (diff) |
more screen modes
- add support for different aspect ratios
- add support for displaying only one screen at once
Diffstat (limited to 'src/frontend/qt_sdl/PlatformConfig.cpp')
-rw-r--r-- | src/frontend/qt_sdl/PlatformConfig.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontend/qt_sdl/PlatformConfig.cpp b/src/frontend/qt_sdl/PlatformConfig.cpp index 0f67b9a..ffab9fb 100644 --- a/src/frontend/qt_sdl/PlatformConfig.cpp +++ b/src/frontend/qt_sdl/PlatformConfig.cpp @@ -42,6 +42,8 @@ int ScreenLayout; int ScreenSwap; int ScreenSizing; int IntegerScaling; +int ScreenAspectTop; +int ScreenAspectBot; int ScreenFilter; int ScreenUseGL; @@ -146,6 +148,8 @@ ConfigEntry PlatformConfigFile[] = {"ScreenSwap", 0, &ScreenSwap, 0, NULL, 0}, {"ScreenSizing", 0, &ScreenSizing, 0, NULL, 0}, {"IntegerScaling", 0, &IntegerScaling, 0, NULL, 0}, + {"ScreenAspectTop",0, &ScreenAspectTop,0, NULL, 0}, + {"ScreenAspectBot",0, &ScreenAspectBot,0, NULL, 0}, {"ScreenFilter", 0, &ScreenFilter, 1, NULL, 0}, {"ScreenUseGL", 0, &ScreenUseGL, 0, NULL, 0}, |