mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Fix dead code.
This commit is contained in:
parent
eaae5b4a45
commit
3c73707dfe
1 changed files with 2 additions and 1 deletions
|
@ -214,8 +214,9 @@ void Presenter::ResizeSurface()
|
||||||
|
|
||||||
void* Presenter::GetNewSurfaceHandle()
|
void* Presenter::GetNewSurfaceHandle()
|
||||||
{
|
{
|
||||||
return m_new_surface_handle;
|
void *handle = m_new_surface_handle;
|
||||||
m_new_surface_handle = nullptr;
|
m_new_surface_handle = nullptr;
|
||||||
|
return handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Presenter::SetWindowSize(int width, int height)
|
void Presenter::SetWindowSize(int width, int height)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue