From 639552ae8f4ea33c8e5536139fba7ea81fcd5809 Mon Sep 17 00:00:00 2001 From: kenshen112 Date: Mon, 18 Jul 2022 15:13:02 -0700 Subject: [PATCH] CDVD: Change CDVDaccess to CDVDcommon --- pcsx2-qt/MainWindow.cpp | 2 +- pcsx2-qt/QtHost.cpp | 2 +- pcsx2/CDVD/CDVD.h | 2 +- pcsx2/CDVD/{CDVDaccess.cpp => CDVDcommon.cpp} | 0 pcsx2/CDVD/{CDVDaccess.h => CDVDcommon.h} | 0 pcsx2/CDVD/IsoFS/IsoFSCDVD.cpp | 2 +- pcsx2/CDVD/Ps1CD.h | 2 +- pcsx2/CMakeLists.txt | 4 ++-- pcsx2/Pcsx2Config.cpp | 2 +- pcsx2/gui/AppConfig.h | 2 +- pcsx2/gui/SysThreadBase.cpp | 2 +- pcsx2/pcsx2.vcxproj | 4 ++-- pcsx2/pcsx2.vcxproj.filters | 4 ++-- pcsx2/pcsx2core.vcxproj | 4 ++-- pcsx2/pcsx2core.vcxproj.filters | 4 ++-- 15 files changed, 18 insertions(+), 18 deletions(-) rename pcsx2/CDVD/{CDVDaccess.cpp => CDVDcommon.cpp} (100%) rename pcsx2/CDVD/{CDVDaccess.h => CDVDcommon.h} (100%) diff --git a/pcsx2-qt/MainWindow.cpp b/pcsx2-qt/MainWindow.cpp index 976f57e521..ccb485e87f 100644 --- a/pcsx2-qt/MainWindow.cpp +++ b/pcsx2-qt/MainWindow.cpp @@ -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" diff --git a/pcsx2-qt/QtHost.cpp b/pcsx2-qt/QtHost.cpp index 3bc6f1090f..c40c4dabca 100644 --- a/pcsx2-qt/QtHost.cpp +++ b/pcsx2-qt/QtHost.cpp @@ -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" diff --git a/pcsx2/CDVD/CDVD.h b/pcsx2/CDVD/CDVD.h index d02f668e99..d0edaa6c19 100644 --- a/pcsx2/CDVD/CDVD.h +++ b/pcsx2/CDVD/CDVD.h @@ -15,7 +15,7 @@ #pragma once -#include "CDVDaccess.h" +#include "CDVDcommon.h" #include #include diff --git a/pcsx2/CDVD/CDVDaccess.cpp b/pcsx2/CDVD/CDVDcommon.cpp similarity index 100% rename from pcsx2/CDVD/CDVDaccess.cpp rename to pcsx2/CDVD/CDVDcommon.cpp diff --git a/pcsx2/CDVD/CDVDaccess.h b/pcsx2/CDVD/CDVDcommon.h similarity index 100% rename from pcsx2/CDVD/CDVDaccess.h rename to pcsx2/CDVD/CDVDcommon.h diff --git a/pcsx2/CDVD/IsoFS/IsoFSCDVD.cpp b/pcsx2/CDVD/IsoFS/IsoFSCDVD.cpp index 3df2c39dd0..5fa89a1872 100644 --- a/pcsx2/CDVD/IsoFS/IsoFSCDVD.cpp +++ b/pcsx2/CDVD/IsoFS/IsoFSCDVD.cpp @@ -17,7 +17,7 @@ #include "PrecompiledHeader.h" #include "IsoFSCDVD.h" -#include "CDVD/CDVDaccess.h" +#include "CDVD/CDVDcommon.h" IsoFSCDVD::IsoFSCDVD() { diff --git a/pcsx2/CDVD/Ps1CD.h b/pcsx2/CDVD/Ps1CD.h index fc0468b04e..7172d84366 100644 --- a/pcsx2/CDVD/Ps1CD.h +++ b/pcsx2/CDVD/Ps1CD.h @@ -15,7 +15,7 @@ #pragma once -#include "CDVDaccess.h" +#include "CDVDcommon.h" // Not used. typedef struct diff --git a/pcsx2/CMakeLists.txt b/pcsx2/CMakeLists.txt index 3236eec244..4829ee8971 100644 --- a/pcsx2/CMakeLists.txt +++ b/pcsx2/CMakeLists.txt @@ -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 diff --git a/pcsx2/Pcsx2Config.cpp b/pcsx2/Pcsx2Config.cpp index 12948699bb..e6289adbd9 100644 --- a/pcsx2/Pcsx2Config.cpp +++ b/pcsx2/Pcsx2Config.cpp @@ -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 diff --git a/pcsx2/gui/AppConfig.h b/pcsx2/gui/AppConfig.h index 1184ee27ea..b939fe5c78 100644 --- a/pcsx2/gui/AppConfig.h +++ b/pcsx2/gui/AppConfig.h @@ -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" diff --git a/pcsx2/gui/SysThreadBase.cpp b/pcsx2/gui/SysThreadBase.cpp index 357886cf25..4f3bcabb9b 100644 --- a/pcsx2/gui/SysThreadBase.cpp +++ b/pcsx2/gui/SysThreadBase.cpp @@ -17,7 +17,7 @@ #include "System.h" #include "SysThreads.h" -#include "CDVD/CDVDaccess.h" +#include "CDVD/CDVDcommon.h" // -------------------------------------------------------------------------------------- // SysThreadBase *External Thread* Implementations diff --git a/pcsx2/pcsx2.vcxproj b/pcsx2/pcsx2.vcxproj index eb48490838..f438652944 100644 --- a/pcsx2/pcsx2.vcxproj +++ b/pcsx2/pcsx2.vcxproj @@ -646,7 +646,7 @@ - + @@ -1087,7 +1087,7 @@ - + diff --git a/pcsx2/pcsx2.vcxproj.filters b/pcsx2/pcsx2.vcxproj.filters index adf3df9d11..f34ce4fafa 100644 --- a/pcsx2/pcsx2.vcxproj.filters +++ b/pcsx2/pcsx2.vcxproj.filters @@ -692,7 +692,7 @@ System\Ps2\Iop\CDVD - + System\Ps2\Iop\CDVD @@ -2002,7 +2002,7 @@ System\Ps2\Iop\CDVD - + System\Ps2\Iop\CDVD diff --git a/pcsx2/pcsx2core.vcxproj b/pcsx2/pcsx2core.vcxproj index 4c023d5f9e..2adbb524e4 100644 --- a/pcsx2/pcsx2core.vcxproj +++ b/pcsx2/pcsx2core.vcxproj @@ -410,7 +410,7 @@ - + @@ -709,7 +709,7 @@ - + diff --git a/pcsx2/pcsx2core.vcxproj.filters b/pcsx2/pcsx2core.vcxproj.filters index 0418288126..4e90e6ba82 100644 --- a/pcsx2/pcsx2core.vcxproj.filters +++ b/pcsx2/pcsx2core.vcxproj.filters @@ -605,7 +605,7 @@ System\Ps2\Iop\CDVD - + System\Ps2\Iop\CDVD @@ -1484,7 +1484,7 @@ System\Ps2\Iop\CDVD - + System\Ps2\Iop\CDVD