summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OnScreenDisplay.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-01-02 14:45:41 -0500
committerLioncash <mathew1800@gmail.com>2016-01-02 14:57:55 -0500
commitedda018d543bf80cd70fa2c2952e2425c650f26e (patch)
treec8437368683d7cc4ad6301468000ae2c65e1151c /Source/Core/VideoCommon/OnScreenDisplay.cpp
parent066af14272a87870bbb84280249cf938d9eba336 (diff)
OnScreenDisplay: Make CallbackType an enum class
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenDisplay.cpp')
-rw-r--r--Source/Core/VideoCommon/OnScreenDisplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp
index dfd597f0ed..ebce4f79ea 100644
--- a/Source/Core/VideoCommon/OnScreenDisplay.cpp
+++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp
@@ -83,7 +83,7 @@ void DoCallbacks(CallbackType type)
}
// Wipe all callbacks on shutdown
- if (type == OSD_SHUTDOWN)
+ if (type == CallbackType::Shutdown)
s_callbacks.clear();
}