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