mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Added wbfs support. Thanks to lordlyhobo for the patch. Fixes issue 859.
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user