CDUtils: Namespace code under the Common namespace

This commit is contained in:
Lioncash
2018-05-27 18:21:59 -04:00
parent 5fdf171967
commit 1f75fa0aff
7 changed files with 11 additions and 5 deletions

View File

@ -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");