diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-27 18:21:59 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-27 18:30:58 -0400 |
| commit | 1f75fa0aff03245417ce4c35ae4730e2b33fe5f1 (patch) | |
| tree | 8298784d531dbb25cbc11531cbda65b8d0cfb531 /Source/Core/DiscIO/Blob.cpp | |
| parent | 5fdf171967ddb63d12f9f410178d6b7bc7115ee4 (diff) | |
CDUtils: Namespace code under the Common namespace
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 5e603610b2..477daafd40 100644 --- a/Source/Core/DiscIO/Blob.cpp +++ b/Source/Core/DiscIO/Blob.cpp @@ -176,7 +176,7 @@ u32 SectorReader::ReadChunk(u8* buffer, u64 chunk_num) std::unique_ptr<BlobReader> CreateBlobReader(const std::string& filename) { - if (cdio_is_cdrom(filename)) + if (Common::cdio_is_cdrom(filename)) return DriveReader::Create(filename); File::IOFile file(filename, "rb"); |
