diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 16:12:42 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 16:12:42 -0400 |
commit | 6fe51b48e960e81b1304d833b2d69b468a4a238a (patch) | |
tree | e5fdd254cdb61e3953edefad1f399c1e4882d15e /src/yuzu/uisettings.h | |
parent | 96c98d09cb9200c9b623404381c33b3379411eeb (diff) |
yuzu-qt: Screenshots depend more on the graphics settings
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 7b5d630d7..8efd63f31 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -132,10 +132,6 @@ struct Values { Setting<bool> enable_screenshot_save_as{linkage, true, "enable_screenshot_save_as", Category::Screenshots}; Setting<u32> screenshot_height{linkage, 0, "screenshot_height", Category::Screenshots}; - Setting<u32> screenshot_width{linkage, 0, "screenshot_width", Category::Screenshots}; - Setting<Settings::ScreenshotAspectRatio> screenshot_aspect_ratio{ - linkage, Settings::ScreenshotAspectRatio::Auto, "screenshot_aspect_ratio", - Category::Screenshots}; QString roms_path; QString symbols_path; @@ -195,7 +191,6 @@ struct Values { extern Values values; u32 CalculateWidth(u32 height, Settings::AspectRatio ratio); -Settings::AspectRatio ConvertScreenshotRatioToRatio(Settings::ScreenshotAspectRatio ratio); } // namespace UISettings |