summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-02-06 01:13:04 -0500
committerLioncash <mathew1800@gmail.com>2017-02-06 01:13:07 -0500
commit259f827e34f953eebce020a7f30cc4079bee6ae3 (patch)
tree659a582892892f1d5f9af20ba5c7c490197ace58 /Source/Core
parentb9fc79020d16e264b8b5215c801a828f32c93cbc (diff)
Core: Actually make the State enum an enum class
It helps if I actually make it a strongly typed enum.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Core.h2
1 files changed, 1 insertions, 1 deletions
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,