Refactor: Update FastFileFactory and Open to use same parsing logic.

This commit is contained in:
njohnson 2025-09-15 18:50:18 -04:00
parent 4bf4c12159
commit 34cafac121
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ void AutoTest_COD10_WiiU::testFactory() {
const QString testName = "Factory ingest: " + fastFilePath;
FastFile* fastFile = FastFileFactory::Create(fastFilePath);
FastFile* fastFile = FastFile::Open(fastFilePath);
const QString game = fastFile->GetGame();
bool correctGame = game == "COD10";

View File

@ -118,7 +118,7 @@ void AutoTest_COD9_WiiU::testFactory() {
const QString testName = "Factory ingest: " + fastFilePath;
FastFile* fastFile = FastFileFactory::Create(fastFilePath);
FastFile* fastFile = FastFile::Open(fastFilePath);
const QString game = fastFile->GetGame();
bool correctGame = game == "COD9";