recording: freeze recording information to savestate regardless

This commit is contained in:
Tyler Wilding 2019-01-27 17:58:36 -05:00 committed by lightningterror
parent 506ea4c4d2
commit ec9c97e0bf
2 changed files with 1 additions and 10 deletions

View File

@ -230,13 +230,7 @@ SaveStateBase& SaveStateBase::FreezeInternals()
// to merit an HLE Bios sub-section... yet. // to merit an HLE Bios sub-section... yet.
deci2Freeze(); deci2Freeze();
#ifndef DISABLE_RECORDING InputRecordingFreeze();
if (g_Conf->EmuOptions.EnableRecordingTools)
{
InputRecordingFreeze();
}
#endif
if( IsLoading() ) if( IsLoading() )
PostLoadPrep(); PostLoadPrep();

View File

@ -215,10 +215,7 @@ protected:
void deci2Freeze(); void deci2Freeze();
#ifndef DISABLE_RECORDING
void InputRecordingFreeze(); void InputRecordingFreeze();
#endif
}; };
// -------------------------------------------------------------------------------------- // --------------------------------------------------------------------------------------