Added wbfs support. Thanks to lordlyhobo for the patch. Fixes issue 859.

This commit is contained in:
skidau
2012-05-04 00:09:01 +10:00
parent a1b3eaffb7
commit 7885e63deb
8 changed files with 306 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#include "FileBlob.h"
#include "CISOBlob.h"
#include "DriveBlob.h"
#include "WbfsBlob.h"
namespace DiscIO
{
@ -128,6 +129,9 @@ IBlobReader* CreateBlobReader(const char* filename)
if (!File::Exists(filename))
return 0;
if (IsWbfsBlob(filename))
return WbfsFileReader::Create(filename);
if (IsCompressedBlob(filename))
return CompressedBlobReader::Create(filename);