Merge pull request #9507 from leoetlino/device-prepareforstate

IOS: Remove unnecessary and unused PrepareForState
This commit is contained in:
Léo Lam
2021-02-14 16:30:34 +01:00
committed by GitHub
2 changed files with 0 additions and 10 deletions

View File

@ -745,14 +745,6 @@ void Kernel::DoState(PointerWrap& p)
if (m_title_id == Titles::MIOS)
return;
// We need to make sure all file handles are closed so IOS::HLE::FSDevice::DoState can
// successfully save or re-create /tmp
for (auto& descriptor : m_fdmap)
{
if (descriptor)
descriptor->PrepareForState(p.GetMode());
}
for (const auto& entry : m_device_map)
entry.second->DoState(p);