Fix Uncompressed Saves.

This commit is contained in:
Frank-74 2016-11-21 15:43:36 +00:00 committed by GitHub
parent 29c2a6932b
commit ed71cba2bd
1 changed files with 2 additions and 2 deletions

View File

@ -1845,7 +1845,7 @@ bool CN64System::LoadState(const char * FileName)
CPath ExtraInfo(SaveFile);
ExtraInfo.SetExtension(".dat");
CFile hExtraInfo(ExtraInfo, CFileBase::modeWrite | CFileBase::modeCreate);
CFile hExtraInfo(ExtraInfo, CFileBase::modeRead);
if (hExtraInfo.IsOpen())
{
m_SystemTimer.LoadData(hExtraInfo);
@ -2183,4 +2183,4 @@ void CN64System::TLB_Changed()
{
g_Debugger->TLBChanged();
}
}
}