diff options
| author | JosJuice <josjuice@gmail.com> | 2015-09-26 14:46:53 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2015-09-26 14:46:53 +0200 |
| commit | 94ee720a0745939874ff4a663fe071c847369c67 (patch) | |
| tree | 4e7c75606597e9ea120b38c1983aa1fde1de92a9 /Source/Core/DiscIO/Blob.cpp | |
| parent | ce75f55f2544e6429e596940895eebb6c2dcb506 (diff) | |
Rename IsCompressedBlob to IsGCZBlob for clarity
GCZ is just one of the several compressed formats that Dolphin supports.
Diffstat (limited to 'Source/Core/DiscIO/Blob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Blob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Blob.cpp b/Source/Core/DiscIO/Blob.cpp index 19cb36d8b3..9ed8577c38 100644 --- a/Source/Core/DiscIO/Blob.cpp +++ b/Source/Core/DiscIO/Blob.cpp @@ -129,7 +129,7 @@ IBlobReader* CreateBlobReader(const std::string& filename) if (IsWbfsBlob(filename)) return WbfsFileReader::Create(filename); - if (IsCompressedBlob(filename)) + if (IsGCZBlob(filename)) return CompressedBlobReader::Create(filename); if (IsCISOBlob(filename)) |
