mirror of https://github.com/PCSX2/pcsx2.git
CDVD: Change CDVDaccess to CDVDcommon
This commit is contained in:
parent
0d1cc8581a
commit
639552ae8f
|
@ -28,7 +28,7 @@
|
|||
#include "common/CocoaTools.h"
|
||||
#include "common/FileSystem.h"
|
||||
|
||||
#include "pcsx2/CDVD/CDVDaccess.h"
|
||||
#include "pcsx2/CDVD/CDVDcommon.h"
|
||||
#include "pcsx2/CDVD/CDVDdiscReader.h"
|
||||
#include "pcsx2/Frontend/GameList.h"
|
||||
#include "pcsx2/Frontend/LogSink.h"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "common/StringUtil.h"
|
||||
#include "common/Timer.h"
|
||||
|
||||
#include "pcsx2/CDVD/CDVDaccess.h"
|
||||
#include "pcsx2/CDVD/CDVDcommon.h"
|
||||
#include "pcsx2/DebugTools/Debug.h"
|
||||
#include "pcsx2/Frontend/GameList.h"
|
||||
#include "pcsx2/Frontend/INISettingsInterface.h"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "CDVDaccess.h"
|
||||
#include "CDVDcommon.h"
|
||||
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "PrecompiledHeader.h"
|
||||
|
||||
#include "IsoFSCDVD.h"
|
||||
#include "CDVD/CDVDaccess.h"
|
||||
#include "CDVD/CDVDcommon.h"
|
||||
|
||||
IsoFSCDVD::IsoFSCDVD()
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "CDVDaccess.h"
|
||||
#include "CDVDcommon.h"
|
||||
|
||||
// Not used.
|
||||
typedef struct
|
||||
|
|
|
@ -259,7 +259,7 @@ set(pcsx2Headers
|
|||
set(pcsx2CDVDSources
|
||||
CDVD/BlockdumpFileReader.cpp
|
||||
CDVD/Ps1CD.cpp
|
||||
CDVD/CDVDaccess.cpp
|
||||
CDVD/CDVDcommon.cpp
|
||||
CDVD/CDVD.cpp
|
||||
CDVD/CDVDdiscReader.cpp
|
||||
CDVD/CDVDisoReader.cpp
|
||||
|
@ -280,7 +280,7 @@ set(pcsx2CDVDSources
|
|||
# CDVD headers
|
||||
set(pcsx2CDVDHeaders
|
||||
CDVD/Ps1CD.h
|
||||
CDVD/CDVDaccess.h
|
||||
CDVD/CDVDcommon.h
|
||||
CDVD/CDVD.h
|
||||
CDVD/CDVD_internal.h
|
||||
CDVD/CDVDdiscReader.h
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "Config.h"
|
||||
#include "GS.h"
|
||||
#include "HostDisplay.h"
|
||||
#include "CDVD/CDVDaccess.h"
|
||||
#include "CDVD/CDVDcommon.h"
|
||||
#include "MemoryCardFile.h"
|
||||
|
||||
#ifndef PCSX2_CORE
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include "AppForwardDefs.h"
|
||||
#include "Config.h"
|
||||
#include "PathDefs.h"
|
||||
#include "CDVD/CDVDaccess.h"
|
||||
#include "CDVD/CDVDcommon.h"
|
||||
#include "common/General.h"
|
||||
#include "common/Path.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "System.h"
|
||||
#include "SysThreads.h"
|
||||
#include "CDVD/CDVDaccess.h"
|
||||
#include "CDVD/CDVDcommon.h"
|
||||
|
||||
// --------------------------------------------------------------------------------------
|
||||
// SysThreadBase *External Thread* Implementations
|
||||
|
|
|
@ -646,7 +646,7 @@
|
|||
<ClCompile Include="ps2\Iop\IopHwWrite.cpp" />
|
||||
<ClCompile Include="CDVD\Ps1CD.cpp" />
|
||||
<ClCompile Include="CDVD\CDVD.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDaccess.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDcommon.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDisoReader.cpp" />
|
||||
<ClCompile Include="Ipu\IPU.cpp" />
|
||||
<ClCompile Include="Ipu\IPU_Fifo.cpp" />
|
||||
|
@ -1087,7 +1087,7 @@
|
|||
<ClInclude Include="CDVD\Ps1CD.h" />
|
||||
<ClInclude Include="CDVD\CDVD.h" />
|
||||
<ClInclude Include="CDVD\CDVD_internal.h" />
|
||||
<ClInclude Include="CDVD\CDVDaccess.h" />
|
||||
<ClInclude Include="CDVD\CDVDcommon.h" />
|
||||
<ClInclude Include="CDVD\CDVDisoReader.h" />
|
||||
<ClInclude Include="Ipu\IPU.h" />
|
||||
<ClInclude Include="Ipu\IPU_Fifo.h" />
|
||||
|
|
|
@ -692,7 +692,7 @@
|
|||
<ClCompile Include="CDVD\CDVD.cpp">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CDVD\CDVDaccess.cpp">
|
||||
<ClCompile Include="CDVD\CDVDcommon.cpp">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CDVD\CDVDisoReader.cpp">
|
||||
|
@ -2002,7 +2002,7 @@
|
|||
<ClInclude Include="CDVD\CDVD_internal.h">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="CDVD\CDVDaccess.h">
|
||||
<ClInclude Include="CDVD\CDVDcommon.h">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="CDVD\CDVDisoReader.h">
|
||||
|
|
|
@ -410,7 +410,7 @@
|
|||
<ClCompile Include="ps2\Iop\IopHwWrite.cpp" />
|
||||
<ClCompile Include="CDVD\Ps1CD.cpp" />
|
||||
<ClCompile Include="CDVD\CDVD.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDaccess.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDcommon.cpp" />
|
||||
<ClCompile Include="CDVD\CDVDisoReader.cpp" />
|
||||
<ClCompile Include="Ipu\IPU.cpp" />
|
||||
<ClCompile Include="Ipu\IPU_Fifo.cpp" />
|
||||
|
@ -709,7 +709,7 @@
|
|||
<ClInclude Include="CDVD\Ps1CD.h" />
|
||||
<ClInclude Include="CDVD\CDVD.h" />
|
||||
<ClInclude Include="CDVD\CDVD_internal.h" />
|
||||
<ClInclude Include="CDVD\CDVDaccess.h" />
|
||||
<ClInclude Include="CDVD\CDVDcommon.h" />
|
||||
<ClInclude Include="Ipu\IPU.h" />
|
||||
<ClInclude Include="Ipu\IPU_Fifo.h" />
|
||||
<ClInclude Include="Ipu\yuv2rgb.h" />
|
||||
|
|
|
@ -605,7 +605,7 @@
|
|||
<ClCompile Include="CDVD\CDVD.cpp">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CDVD\CDVDaccess.cpp">
|
||||
<ClCompile Include="CDVD\CDVDcommon.cpp">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="CDVD\CDVDisoReader.cpp">
|
||||
|
@ -1484,7 +1484,7 @@
|
|||
<ClInclude Include="CDVD\CDVD_internal.h">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="CDVD\CDVDaccess.h">
|
||||
<ClInclude Include="CDVD\CDVDcommon.h">
|
||||
<Filter>System\Ps2\Iop\CDVD</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="IPU\IPU.h">
|
||||
|
|
Loading…
Reference in New Issue