HostInterface: Reset counters when starting from state

This commit is contained in:
Connor McLaughlin 2020-02-21 23:41:40 +09:00
parent 3a0f8bffc5
commit 1ed8243776
1 changed files with 1 additions and 2 deletions

View File

@ -410,8 +410,6 @@ bool HostInterface::LoadState(const char* filename)
m_system->Reset();
return false;
}
m_system->ResetPerformanceCounters();
}
else
{
@ -429,6 +427,7 @@ bool HostInterface::LoadState(const char* filename)
}
}
m_system->ResetPerformanceCounters();
return true;
}