From 1557e6ab05294c65253ca60774c332cfe9659191 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 8 Jan 2018 12:04:12 +0100 Subject: [PATCH] Specify underlying types for enums that get casted from integers Otherwise we might get UB if the value we cast is larger than the max value of the underlying type that the compiled picked for the enum. I haven't done any extensive check through Dolphin to find cases of this, I'm just fixing the cases I already know of. --- Source/Core/VideoCommon/VideoConfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index b472a2ab57..103b63b423 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -24,7 +24,7 @@ constexpr int EFB_SCALE_AUTO_INTEGRAL = 0; -enum class AspectMode +enum class AspectMode : int { Auto, AnalogWide, @@ -32,7 +32,7 @@ enum class AspectMode Stretch, }; -enum class StereoMode +enum class StereoMode : int { Off, SBS,