mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #3238 from phire/fifo_version_number_fixes
Fifoplayer: Load the Correct version number.
This commit is contained in:
commit
bdbe8e3691
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ FifoDataFile* FifoDataFile::Load(const std::string &filename, bool flagsOnly)
|
|||
FifoDataFile* dataFile = new FifoDataFile;
|
||||
|
||||
dataFile->m_Flags = header.flags;
|
||||
dataFile->m_Version = header.min_loader_version;
|
||||
dataFile->m_Version = header.file_version;
|
||||
|
||||
if (flagsOnly)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue