diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-04-13 03:20:06 +0200 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2024-04-13 03:21:39 +0200 |
| commit | 2f13be5a2d05b41ba91a2abfa4af2c79a85bb34f (patch) | |
| tree | 2f62301611ce144a72452f214bfc17f1f13e5b5b /Source/Core/VideoCommon/VideoConfig.h | |
| parent | 66592f79f2230bf5589bccb1f51da72150bf89c9 (diff) | |
VideoConfig: Adjust FrameDumpResolutionType enum class to style guidelines
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.h')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index baf8fb4e8b..1e5f03d0e5 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -83,11 +83,11 @@ enum class TriState : int enum class FrameDumpResolutionType : int { // Window resolution (not including potential back buffer black borders) - WINDOW_RESOLUTION, + WindowResolution, // The aspect ratio corrected XFB resolution (XFB pixels might not have been square) - XFB_ASPECT_RATIO_CORRECTED_RESOLUTION, + XFBAspectRatioCorrectedResolution, // The raw unscaled XFB resolution (based on "internal resolution" scale) - XFB_RAW_RESOLUTION, + XFBRawResolution, }; // Bitmask containing information about which configuration has changed for the backend. @@ -200,7 +200,7 @@ struct VideoConfig final std::string sDumpFormat; std::string sDumpPath; FrameDumpResolutionType frame_dumps_resolution_type = - FrameDumpResolutionType::XFB_ASPECT_RATIO_CORRECTED_RESOLUTION; + FrameDumpResolutionType::XFBAspectRatioCorrectedResolution; bool bBorderlessFullscreen = false; bool bEnableGPUTextureDecoding = false; bool bPreferVSForLinePointExpansion = false; |
