Remove unused Host_ShowVideoConfig

This commit is contained in:
Stenzek
2018-09-28 14:05:53 +10:00
parent a5c74cd6d1
commit a877d5f6dc
8 changed files with 0 additions and 27 deletions

View File

@ -60,14 +60,6 @@ __declspec(dllexport) DWORD NvOptimusEnablement = 1;
}
#endif
void VideoBackendBase::ShowConfig(void* parent_handle)
{
if (!m_initialized)
InitBackendInfo();
Host_ShowVideoConfig(parent_handle, GetDisplayName());
}
void VideoBackendBase::Video_ExitLoop()
{
Fifo::ExitGpuLoop();

View File

@ -40,7 +40,6 @@ public:
virtual std::string GetName() const = 0;
virtual std::string GetDisplayName() const { return GetName(); }
void ShowConfig(void* parent_handle);
virtual void InitBackendInfo() = 0;
void Video_ExitLoop();