Log: Remove unused ISOReader channel

This commit is contained in:
Stenzek 2024-11-23 18:59:10 +10:00
parent 88836c431e
commit e987b56aae
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View File

@ -46,7 +46,6 @@
X(Image) \
X(InputManager) \
X(InterruptController) \
X(IsoReader) \
X(Justifier) \
X(Log) \
X(MDEC) \

View File

@ -12,8 +12,6 @@
#include <cctype>
LOG_CHANNEL(IsoReader);
IsoReader::IsoReader() = default;
IsoReader::~IsoReader() = default;
@ -80,7 +78,6 @@ bool IsoReader::ReadPVD(Error* error)
m_pvd_lba = START_SECTOR + i;
std::memcpy(&m_pvd, buffer, sizeof(ISOPrimaryVolumeDescriptor));
DEV_LOG("ISOReader: PVD found at index {}", i);
return true;
}