mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-16 07:00:57 -05:00
OnScreenDisplay: Make CallbackType an enum class
This commit is contained in:
@@ -150,7 +150,7 @@ void VideoSoftware::Shutdown()
|
||||
DebugUtil::Shutdown();
|
||||
|
||||
// Do our OSD callbacks
|
||||
OSD::DoCallbacks(OSD::OSD_SHUTDOWN);
|
||||
OSD::DoCallbacks(OSD::CallbackType::Shutdown);
|
||||
|
||||
SWOGLWindow::Shutdown();
|
||||
}
|
||||
@@ -163,7 +163,7 @@ void VideoSoftware::Video_Cleanup()
|
||||
void VideoSoftware::Video_Prepare()
|
||||
{
|
||||
// Do our OSD callbacks
|
||||
OSD::DoCallbacks(OSD::OSD_INIT);
|
||||
OSD::DoCallbacks(OSD::CallbackType::Initialization);
|
||||
|
||||
SWRenderer::Prepare();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user