mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
OnScreenDisplay: Make CallbackType an enum class
This commit is contained in:
parent
066af14272
commit
edda018d54
7 changed files with 14 additions and 14 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue