HW/DVD: Rename DVDInterface namespace to DVD.

This commit is contained in:
Admiral H. Curtiss 2023-03-10 18:33:09 +01:00
commit ee35103ed9
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
11 changed files with 44 additions and 47 deletions

View file

@ -50,7 +50,7 @@ struct System::Impl
CommandProcessor::CommandProcessorManager m_command_processor;
CPU::CPUManager m_cpu;
DSP::DSPManager m_dsp;
DVDInterface::DVDInterfaceManager m_dvd_interface;
DVD::DVDInterfaceManager m_dvd_interface;
DVDThread::DVDThreadManager m_dvd_thread;
ExpansionInterface::ExpansionInterfaceState m_expansion_interface_state;
Fifo::FifoManager m_fifo;
@ -138,7 +138,7 @@ DSP::DSPManager& System::GetDSP() const
return m_impl->m_dsp;
}
DVDInterface::DVDInterfaceManager& System::GetDVDInterface() const
DVD::DVDInterfaceManager& System::GetDVDInterface() const
{
return m_impl->m_dvd_interface;
}