diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-02-06 01:13:04 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-02-06 01:13:07 -0500 |
| commit | 259f827e34f953eebce020a7f30cc4079bee6ae3 (patch) | |
| tree | 659a582892892f1d5f9af20ba5c7c490197ace58 /Source/Core | |
| parent | b9fc79020d16e264b8b5215c801a828f32c93cbc (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.h | 2 |
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, |
