mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
Core: Get rid of Host_GetInstance()
This commit is contained in:
@ -524,19 +524,6 @@ void Host_Message(int Id)
|
||||
main_frame->GetEventHandler()->AddPendingEvent(event);
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
extern "C" HINSTANCE wxGetInstance();
|
||||
void* Host_GetInstance()
|
||||
{
|
||||
return (void*)wxGetInstance();
|
||||
}
|
||||
#else
|
||||
void* Host_GetInstance()
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
void* Host_GetRenderHandle()
|
||||
{
|
||||
return main_frame->GetRenderHandle();
|
||||
|
@ -67,8 +67,6 @@ void* Host_GetRenderHandle()
|
||||
return surf;
|
||||
}
|
||||
|
||||
void* Host_GetInstance() { return nullptr; }
|
||||
|
||||
void Host_UpdateTitle(const std::string& title)
|
||||
{
|
||||
__android_log_write(ANDROID_LOG_INFO, DOLPHIN_TAG, title.c_str());
|
||||
|
@ -64,8 +64,6 @@ void* Host_GetRenderHandle()
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void* Host_GetInstance() { return nullptr; }
|
||||
|
||||
void Host_UpdateTitle(const std::string& title){};
|
||||
|
||||
void Host_UpdateLogDisplay(){}
|
||||
|
Reference in New Issue
Block a user