mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Added wbfs support. Thanks to lordlyhobo for the patch. Fixes issue 859.
This commit is contained in:
parent
a1b3eaffb7
commit
7885e63deb
8 changed files with 306 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue