From 2f13be5a2d05b41ba91a2abfa4af2c79a85bb34f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sat, 13 Apr 2024 03:20:06 +0200 Subject: VideoConfig: Adjust FrameDumpResolutionType enum class to style guidelines --- Source/Core/VideoCommon/Present.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/Present.cpp') diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index 7de27f5049..d6794a5d54 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -212,7 +212,7 @@ void Presenter::ProcessFrameDumping(u64 ticks) const switch (g_ActiveConfig.frame_dumps_resolution_type) { default: - case FrameDumpResolutionType::WINDOW_RESOLUTION: + case FrameDumpResolutionType::WindowResolution: { if (!g_gfx->IsHeadless()) { @@ -221,7 +221,7 @@ void Presenter::ProcessFrameDumping(u64 ticks) const } [[fallthrough]]; } - case FrameDumpResolutionType::XFB_ASPECT_RATIO_CORRECTED_RESOLUTION: + case FrameDumpResolutionType::XFBAspectRatioCorrectedResolution: { target_rect = m_xfb_rect; const bool allow_stretch = false; @@ -233,7 +233,7 @@ void Presenter::ProcessFrameDumping(u64 ticks) const target_rect = MathUtil::Rectangle(0, 0, int_width, int_height); break; } - case FrameDumpResolutionType::XFB_RAW_RESOLUTION: + case FrameDumpResolutionType::XFBRawResolution: { target_rect = m_xfb_rect; break; -- cgit v1.2.3