diff options
| author | Adam Scott <ascott.ca@gmail.com> | 2026-03-24 14:18:15 -0400 |
|---|---|---|
| committer | Adam Scott <ascott.ca@gmail.com> | 2026-04-18 13:08:41 -0400 |
| commit | a5059cbca81c31fbbfceb2180b82eb59b0fe2fcb (patch) | |
| tree | 4f326e1b85e1f35ff25250bc36fdc6cb7f9f2cc6 /Source/Core/VideoCommon/VideoConfig.h | |
| parent | 2b6667a98db9d0d9b8b7f8ae6a2e82b9c84c3e53 (diff) | |
Add screen crop feature
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.h')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 3f82e3afe7..eae2ac6208 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -206,7 +206,12 @@ struct VideoConfig final float widescreen_heuristic_aspect_ratio_slop = 0.f; float widescreen_heuristic_standard_ratio = 0.f; float widescreen_heuristic_widescreen_ratio = 0.f; - bool bCrop = false; // Aspect ratio controls. + bool bCropToAspectRatio = false; + bool bCropCustom = false; + int iCropCustomLeft = 0; + int iCropCustomTop = 0; + int iCropCustomRight = 0; + int iCropCustomBottom = 0; bool bShaderCache = false; // Enhancements |
