summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Blob.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-05-17 15:34:50 +0200
committerJosJuice <josjuice@gmail.com>2020-06-17 13:48:45 +0200
commitf2c38c0e67720ece41c317e0c04e80aea7fd3f36 (patch)
tree9ea4e3e0feeb3e518180c169a12f3bea4501fa57 /Source/Core/DiscIO/Blob.cpp
parentca4e4a62078a4aa7514b5b0fba252292ef0a4082 (diff)
RVZ: Make m_rvz a template parameter
Needed for the next commit.
Diffstat (limited to 'Source/Core/DiscIO/Blob.cpp')
-rw-r--r--Source/Core/DiscIO/Blob.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Blob.cpp b/Source/Core/DiscIO/Blob.cpp
index c2c44caa60..50146c9c91 100644
--- a/Source/Core/DiscIO/Blob.cpp
+++ b/Source/Core/DiscIO/Blob.cpp
@@ -207,8 +207,9 @@ std::unique_ptr<BlobReader> CreateBlobReader(const std::string& filename)
case WBFS_MAGIC:
return WbfsFileReader::Create(std::move(file), filename);
case WIA_MAGIC:
- case RVZ_MAGIC:
return WIAFileReader::Create(std::move(file), filename);
+ case RVZ_MAGIC:
+ return RVZFileReader::Create(std::move(file), filename);
default:
if (auto directory_blob = DirectoryBlobReader::Create(filename))
return std::move(directory_blob);