summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2018-05-28 01:05:03 +0200
committerGitHub <noreply@github.com>2018-05-28 01:05:03 +0200
commit686e29f2d3f1f6cbd58dd9104820747e2c0d629e (patch)
tree6b3e7a9a2086e0bf7c1b5fc970bcd3ee8702946f /Source/Core/DiscIO
parent5fdf171967ddb63d12f9f410178d6b7bc7115ee4 (diff)
parentc056708dc85c0443adb2f3109998a5b29229aa62 (diff)
Merge pull request #6995 from lioncash/cd
CDUtils: Namespace code under the Common namespace
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Blob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Blob.cpp b/Source/Core/DiscIO/Blob.cpp
index 5e603610b2..7db5748ae3 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::IsCDROMDevice(filename))
return DriveReader::Create(filename);
File::IOFile file(filename, "rb");