mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +01:00
cleanup: remove unnecessary return and namespace declaration
This commit is contained in:
parent
549a5370d8
commit
343656f66d
@ -298,7 +298,7 @@ void D3D12GSRender::on_init_thread()
|
||||
|
||||
void D3D12GSRender::on_exit()
|
||||
{
|
||||
return GSRender::on_exit();
|
||||
GSRender::on_exit();
|
||||
}
|
||||
|
||||
void D3D12GSRender::do_local_task(rsx::FIFO_state state)
|
||||
|
@ -270,7 +270,3 @@ gl::vertex_upload_info GLGSRender::set_vertex_buffer()
|
||||
m_vertex_upload_time += std::chrono::duration_cast<std::chrono::microseconds>(now - then).count();
|
||||
return upload_info;
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
} // End anonymous namespace
|
||||
|
@ -1647,7 +1647,7 @@ void VKGSRender::on_init_thread()
|
||||
void VKGSRender::on_exit()
|
||||
{
|
||||
zcull_ctrl.release();
|
||||
return GSRender::on_exit();
|
||||
GSRender::on_exit();
|
||||
}
|
||||
|
||||
void VKGSRender::clear_surface(u32 mask)
|
||||
|
Loading…
Reference in New Issue
Block a user