From 259f827e34f953eebce020a7f30cc4079bee6ae3 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 6 Feb 2017 01:13:04 -0500 Subject: [PATCH] Core: Actually make the State enum an enum class It helps if I actually make it a strongly typed enum. --- Source/Core/Core/Core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Core.h b/Source/Core/Core/Core.h index eb81ba2ff4..7b94844f87 100644 --- a/Source/Core/Core/Core.h +++ b/Source/Core/Core/Core.h @@ -28,7 +28,7 @@ void SetIsThrottlerTempDisabled(bool disable); void Callback_VideoCopiedToXFB(bool video_update); -enum State +enum class State { Uninitialized, Paused,