diff options
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 |
