FifoPlayer: Don't check efb copy hashes when plaing back a broken dff

This commit is contained in:
Scott Mansell
2015-09-07 02:31:32 +12:00
parent bda964e0b9
commit ac467d9fb9
3 changed files with 37 additions and 1 deletions

View File

@ -19,6 +19,8 @@
#include "Core/PowerPC/PowerPC.h"
#include "VideoCommon/BPMemory.h"
bool IsPlayingBackFifologWithBrokenEFBCopies = false;
FifoPlayer::~FifoPlayer()
{
delete m_File;
@ -61,6 +63,9 @@ bool FifoPlayer::Play()
if (m_File->GetFrameCount() == 0)
return false;
// Currently these is no such thing as a Fifolog without broken EFB copies.
IsPlayingBackFifologWithBrokenEFBCopies = true;
m_CurrentFrame = m_FrameRangeStart;
LoadMemory();
@ -100,6 +105,8 @@ bool FifoPlayer::Play()
}
}
IsPlayingBackFifologWithBrokenEFBCopies = false;
return true;
}