From dcb360cf41139b49732e36a4dbaa4256192710b4 Mon Sep 17 00:00:00 2001 From: Vincent Cunningham Date: Sun, 28 Feb 2021 16:32:50 -0500 Subject: [PATCH] Replace \ with / in include directives --- Source/Common/Thread.h | 2 +- Source/JoinSettings/main.cpp | 8 +++---- Source/Project64-core/AppInit.cpp | 2 +- .../N64System/Enhancement/Enhancement.cpp | 8 +++---- .../N64System/Enhancement/Enhancement.h | 2 +- .../N64System/Enhancement/EnhancementFile.cpp | 2 +- .../N64System/Enhancement/EnhancementFile.h | 8 +++---- .../N64System/Enhancement/EnhancementList.cpp | 2 +- .../N64System/Enhancement/EnhancementList.h | 2 +- .../N64System/Enhancement/Enhancements.cpp | 24 +++++++++---------- .../N64System/Enhancement/Enhancements.h | 8 +++---- .../SettingType/SettingsType-GameSetting.h | 2 +- Source/Project64-input/Button.h | 2 +- Source/Project64-input/CProject64Input.h | 2 +- Source/Project64-input/DirectInput.cpp | 4 ++-- Source/Project64-input/DirectInput.h | 2 +- Source/Project64-input/InputConfigUI.cpp | 4 ++-- Source/Project64-input/InputSettings.cpp | 2 +- Source/Project64-input/InputSettings.h | 2 +- Source/Project64-input/OptionsUI.cpp | 2 +- Source/Project64-input/OptionsUI.h | 2 +- Source/Project64-input/wtl-ScanButton.cpp | 2 +- .../TextureEnhancer/tc-1.1+/dxtn.c | 2 +- .../Project64/UserInterface/CheatClassUI.cpp | 2 +- Source/Project64/UserInterface/CheatClassUI.h | 4 ++-- .../UserInterface/Debugger/Assembler.cpp | 2 +- .../UserInterface/Debugger/Breakpoints.h | 2 +- .../Project64/UserInterface/Debugger/OpInfo.h | 2 +- .../Project64/UserInterface/EnhancementUI.cpp | 2 +- .../UserInterface/ProjectSupport.cpp | 2 +- .../Settings/SettingsPage-Game-Plugin.h | 4 ++-- .../Settings/SettingsPage-Plugin.h | 2 +- .../WTLControls/GetCWindowText.cpp | 2 +- Source/Project64/main.cpp | 6 ++--- Source/UpdateVersion/UpdateVersion.cpp | 6 ++--- Source/nragev20/Interface.cpp | 2 +- 36 files changed, 67 insertions(+), 67 deletions(-) diff --git a/Source/Common/Thread.h b/Source/Common/Thread.h index ab89fd113..33977c5fc 100644 --- a/Source/Common/Thread.h +++ b/Source/Common/Thread.h @@ -1,5 +1,5 @@ #pragma once -#include +#include class CThread { diff --git a/Source/JoinSettings/main.cpp b/Source/JoinSettings/main.cpp index 18d4baf16..6e558228f 100644 --- a/Source/JoinSettings/main.cpp +++ b/Source/JoinSettings/main.cpp @@ -1,7 +1,7 @@ -#include -#include -#include -#include +#include +#include +#include +#include #include #include #include diff --git a/Source/Project64-core/AppInit.cpp b/Source/Project64-core/AppInit.cpp index c60c15111..d16803bfa 100644 --- a/Source/Project64-core/AppInit.cpp +++ b/Source/Project64-core/AppInit.cpp @@ -9,7 +9,7 @@ #include #include #include -#include +#include #include "Settings/SettingType/SettingsType-Application.h" static void FixDirectories(void); diff --git a/Source/Project64-core/N64System/Enhancement/Enhancement.cpp b/Source/Project64-core/N64System/Enhancement/Enhancement.cpp index f9f74580e..8b5a1d1b0 100644 --- a/Source/Project64-core/N64System/Enhancement/Enhancement.cpp +++ b/Source/Project64-core/N64System/Enhancement/Enhancement.cpp @@ -9,10 +9,10 @@ * * ****************************************************************************/ #include "stdafx.h" -#include -#include -#include -#include +#include +#include +#include +#include #pragma warning(disable:4996) diff --git a/Source/Project64-core/N64System/Enhancement/Enhancement.h b/Source/Project64-core/N64System/Enhancement/Enhancement.h index 5815f1e5e..f0859f907 100644 --- a/Source/Project64-core/N64System/Enhancement/Enhancement.h +++ b/Source/Project64-core/N64System/Enhancement/Enhancement.h @@ -9,7 +9,7 @@ * * ****************************************************************************/ #pragma once -#include +#include #include #include diff --git a/Source/Project64-core/N64System/Enhancement/EnhancementFile.cpp b/Source/Project64-core/N64System/Enhancement/EnhancementFile.cpp index f6e89662d..29edf5e5e 100644 --- a/Source/Project64-core/N64System/Enhancement/EnhancementFile.cpp +++ b/Source/Project64-core/N64System/Enhancement/EnhancementFile.cpp @@ -9,7 +9,7 @@ * * ****************************************************************************/ #include "stdafx.h" -#include +#include #pragma warning(disable:4996) diff --git a/Source/Project64-core/N64System/Enhancement/EnhancementFile.h b/Source/Project64-core/N64System/Enhancement/EnhancementFile.h index e4a2629d8..d1a6461d3 100644 --- a/Source/Project64-core/N64System/Enhancement/EnhancementFile.h +++ b/Source/Project64-core/N64System/Enhancement/EnhancementFile.h @@ -9,10 +9,10 @@ * * ****************************************************************************/ #pragma once -#include -#include -#include -#include +#include +#include +#include +#include #include #include #include diff --git a/Source/Project64-core/N64System/Enhancement/EnhancementList.cpp b/Source/Project64-core/N64System/Enhancement/EnhancementList.cpp index c58a616f6..e08d13dd4 100644 --- a/Source/Project64-core/N64System/Enhancement/EnhancementList.cpp +++ b/Source/Project64-core/N64System/Enhancement/EnhancementList.cpp @@ -9,7 +9,7 @@ * * ****************************************************************************/ #include "stdafx.h" -#include +#include CEnhancementList::CEnhancementList() { diff --git a/Source/Project64-core/N64System/Enhancement/EnhancementList.h b/Source/Project64-core/N64System/Enhancement/EnhancementList.h index a1aeaa01c..bb88b1468 100644 --- a/Source/Project64-core/N64System/Enhancement/EnhancementList.h +++ b/Source/Project64-core/N64System/Enhancement/EnhancementList.h @@ -11,7 +11,7 @@ #pragma once #include #include -#include +#include struct EnhancementItemList_compare { diff --git a/Source/Project64-core/N64System/Enhancement/Enhancements.cpp b/Source/Project64-core/N64System/Enhancement/Enhancements.cpp index e645158d1..e441fe3af 100644 --- a/Source/Project64-core/N64System/Enhancement/Enhancements.cpp +++ b/Source/Project64-core/N64System/Enhancement/Enhancements.cpp @@ -9,18 +9,18 @@ * * ****************************************************************************/ #include "stdafx.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include CEnhancements::CEnhancements() : m_ScanFileThread(stScanFileThread), diff --git a/Source/Project64-core/N64System/Enhancement/Enhancements.h b/Source/Project64-core/N64System/Enhancement/Enhancements.h index 33b3cf61e..43bae02f8 100644 --- a/Source/Project64-core/N64System/Enhancement/Enhancements.h +++ b/Source/Project64-core/N64System/Enhancement/Enhancements.h @@ -9,10 +9,10 @@ * * ****************************************************************************/ #pragma once -#include -#include -#include -#include +#include +#include +#include +#include #include #include diff --git a/Source/Project64-core/Settings/SettingType/SettingsType-GameSetting.h b/Source/Project64-core/Settings/SettingType/SettingsType-GameSetting.h index c610b488c..856961ce0 100644 --- a/Source/Project64-core/Settings/SettingType/SettingsType-GameSetting.h +++ b/Source/Project64-core/Settings/SettingType/SettingsType-GameSetting.h @@ -9,7 +9,7 @@ * * ****************************************************************************/ #pragma once -#include +#include class CSettingTypeGame : public CSettingTypeApplication diff --git a/Source/Project64-input/Button.h b/Source/Project64-input/Button.h index b42929e46..706044399 100644 --- a/Source/Project64-input/Button.h +++ b/Source/Project64-input/Button.h @@ -1,5 +1,5 @@ #pragma once -#include +#include #include enum BtnType diff --git a/Source/Project64-input/CProject64Input.h b/Source/Project64-input/CProject64Input.h index 9a0c53458..134511ecd 100644 --- a/Source/Project64-input/CProject64Input.h +++ b/Source/Project64-input/CProject64Input.h @@ -2,7 +2,7 @@ #include "ControllerSpec1.1.h" #include "DirectInput.h" #include "N64Controller.h" -#include +#include #include class CProject64Input diff --git a/Source/Project64-input/DirectInput.cpp b/Source/Project64-input/DirectInput.cpp index 0d00e9471..327bf184b 100644 --- a/Source/Project64-input/DirectInput.cpp +++ b/Source/Project64-input/DirectInput.cpp @@ -1,6 +1,6 @@ #include "DirectInput.h" -#include -#include +#include +#include #include #include "CProject64Input.h" diff --git a/Source/Project64-input/DirectInput.h b/Source/Project64-input/DirectInput.h index 222ef6f67..7b119d544 100644 --- a/Source/Project64-input/DirectInput.h +++ b/Source/Project64-input/DirectInput.h @@ -3,7 +3,7 @@ #include "Button.h" #include "DeviceNotification.h" #include "N64Controller.h" -#include +#include #define DIRECTINPUT_VERSION 0x0800 #include #include diff --git a/Source/Project64-input/InputConfigUI.cpp b/Source/Project64-input/InputConfigUI.cpp index bba003cf1..6f4a1bc9b 100644 --- a/Source/Project64-input/InputConfigUI.cpp +++ b/Source/Project64-input/InputConfigUI.cpp @@ -4,8 +4,8 @@ #include "wtl-BitmapPicture.h" #include "wtl-ScanButton.h" #include "OptionsUI.h" -#include -#include +#include +#include #include "resource.h" class CInputConfigUI; diff --git a/Source/Project64-input/InputSettings.cpp b/Source/Project64-input/InputSettings.cpp index 973327f76..67ad4b5bb 100644 --- a/Source/Project64-input/InputSettings.cpp +++ b/Source/Project64-input/InputSettings.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include "InputSettingsID.h" #include "InputSettings.h" diff --git a/Source/Project64-input/InputSettings.h b/Source/Project64-input/InputSettings.h index 87985af10..ba0c260a9 100644 --- a/Source/Project64-input/InputSettings.h +++ b/Source/Project64-input/InputSettings.h @@ -1,5 +1,5 @@ #pragma once -#include +#include #include #include "N64Controller.h" #include "ControllerSpec1.1.h" diff --git a/Source/Project64-input/OptionsUI.cpp b/Source/Project64-input/OptionsUI.cpp index d8c3d523c..252b7a6a8 100644 --- a/Source/Project64-input/OptionsUI.cpp +++ b/Source/Project64-input/OptionsUI.cpp @@ -1,7 +1,7 @@ #include "OptionsUI.h" #include "wtl.h" #include "resource.h" -#include +#include class COptionsDlg : public CDialogImpl diff --git a/Source/Project64-input/OptionsUI.h b/Source/Project64-input/OptionsUI.h index cf356f191..03e3cec9d 100644 --- a/Source/Project64-input/OptionsUI.h +++ b/Source/Project64-input/OptionsUI.h @@ -1,5 +1,5 @@ #pragma once -#include +#include #include "ControllerSpec1.1.h" #include "N64Controller.h" diff --git a/Source/Project64-input/wtl-ScanButton.cpp b/Source/Project64-input/wtl-ScanButton.cpp index 524088224..3fe575309 100644 --- a/Source/Project64-input/wtl-ScanButton.cpp +++ b/Source/Project64-input/wtl-ScanButton.cpp @@ -1,6 +1,6 @@ #include "wtl-ScanButton.h" #include "CProject64Input.h" -#include +#include #include CScanButton::CScanButton(BUTTON & Button, int DisplayCtrlId, int ScanBtnId) : diff --git a/Source/Project64-video/TextureEnhancer/tc-1.1+/dxtn.c b/Source/Project64-video/TextureEnhancer/tc-1.1+/dxtn.c index cfd5510d9..f5f6f8613 100644 --- a/Source/Project64-video/TextureEnhancer/tc-1.1+/dxtn.c +++ b/Source/Project64-video/TextureEnhancer/tc-1.1+/dxtn.c @@ -17,7 +17,7 @@ #include #include -#include +#include #include "types.h" #include "internal.h" diff --git a/Source/Project64/UserInterface/CheatClassUI.cpp b/Source/Project64/UserInterface/CheatClassUI.cpp index 1d7a7f8d7..1ec49c641 100644 --- a/Source/Project64/UserInterface/CheatClassUI.cpp +++ b/Source/Project64/UserInterface/CheatClassUI.cpp @@ -9,7 +9,7 @@ * * ****************************************************************************/ #include "stdafx.h" -#include +#include CCheatsUI::CCheatsUI(void) : m_EditCheat(m_Cheats, m_SelectCheat), diff --git a/Source/Project64/UserInterface/CheatClassUI.h b/Source/Project64/UserInterface/CheatClassUI.h index 44d2893fb..9dad1fedb 100644 --- a/Source/Project64/UserInterface/CheatClassUI.h +++ b/Source/Project64/UserInterface/CheatClassUI.h @@ -10,8 +10,8 @@ ****************************************************************************/ #pragma once #include -#include -#include +#include +#include class CEditCheat; class CCheatsUI; diff --git a/Source/Project64/UserInterface/Debugger/Assembler.cpp b/Source/Project64/UserInterface/Debugger/Assembler.cpp index d7bccebff..706caecff 100644 --- a/Source/Project64/UserInterface/Debugger/Assembler.cpp +++ b/Source/Project64/UserInterface/Debugger/Assembler.cpp @@ -16,7 +16,7 @@ #include "stdafx.h" #include "Assembler.h" -#include "Project64-core\N64System\Mips\OpCode.h" +#include "Project64-core/N64System/Mips/OpCode.h" ASM_PARSE_ERROR CAssembler::m_ParseError = ERR_NONE; uint32_t CAssembler::m_Address = 0; diff --git a/Source/Project64/UserInterface/Debugger/Breakpoints.h b/Source/Project64/UserInterface/Debugger/Breakpoints.h index a7576a055..b55fa318c 100644 --- a/Source/Project64/UserInterface/Debugger/Breakpoints.h +++ b/Source/Project64/UserInterface/Debugger/Breakpoints.h @@ -9,7 +9,7 @@ * * ****************************************************************************/ #pragma once -#include +#include #include class CBreakpoints : diff --git a/Source/Project64/UserInterface/Debugger/OpInfo.h b/Source/Project64/UserInterface/Debugger/OpInfo.h index 22f17b4b4..865ebf56d 100644 --- a/Source/Project64/UserInterface/Debugger/OpInfo.h +++ b/Source/Project64/UserInterface/Debugger/OpInfo.h @@ -12,7 +12,7 @@ #include -#include +#include class COpInfo { diff --git a/Source/Project64/UserInterface/EnhancementUI.cpp b/Source/Project64/UserInterface/EnhancementUI.cpp index 122603c79..c337daa43 100644 --- a/Source/Project64/UserInterface/EnhancementUI.cpp +++ b/Source/Project64/UserInterface/EnhancementUI.cpp @@ -10,7 +10,7 @@ ****************************************************************************/ #include "stdafx.h" #include -#include +#include class CEditEnhancement : public CDialogImpl < CEditEnhancement > diff --git a/Source/Project64/UserInterface/ProjectSupport.cpp b/Source/Project64/UserInterface/ProjectSupport.cpp index 38416810f..26513f1ba 100644 --- a/Source/Project64/UserInterface/ProjectSupport.cpp +++ b/Source/Project64/UserInterface/ProjectSupport.cpp @@ -1,5 +1,5 @@ #include "stdafx.h" -#include +#include #include #include #include diff --git a/Source/Project64/UserInterface/Settings/SettingsPage-Game-Plugin.h b/Source/Project64/UserInterface/Settings/SettingsPage-Game-Plugin.h index 11e3d0eef..5483421e1 100644 --- a/Source/Project64/UserInterface/Settings/SettingsPage-Game-Plugin.h +++ b/Source/Project64/UserInterface/Settings/SettingsPage-Game-Plugin.h @@ -10,8 +10,8 @@ ****************************************************************************/ #pragma once -#include -#include +#include +#include class CGamePluginPage : public CSettingsPageImpl, diff --git a/Source/Project64/UserInterface/Settings/SettingsPage-Plugin.h b/Source/Project64/UserInterface/Settings/SettingsPage-Plugin.h index e234f360f..a57d820a2 100644 --- a/Source/Project64/UserInterface/Settings/SettingsPage-Plugin.h +++ b/Source/Project64/UserInterface/Settings/SettingsPage-Plugin.h @@ -10,7 +10,7 @@ ****************************************************************************/ #pragma once -#include +#include class COptionPluginPage : public CSettingsPageImpl, diff --git a/Source/Project64/UserInterface/WTLControls/GetCWindowText.cpp b/Source/Project64/UserInterface/WTLControls/GetCWindowText.cpp index 2f40f5b29..8f96c6697 100644 --- a/Source/Project64/UserInterface/WTLControls/GetCWindowText.cpp +++ b/Source/Project64/UserInterface/WTLControls/GetCWindowText.cpp @@ -1,6 +1,6 @@ #include "stdafx.h" #include "GetCWindowText.h" -#include +#include std::string GetCWindowText(const CWindow & window) { diff --git a/Source/Project64/main.cpp b/Source/Project64/main.cpp index 0f69c8c20..4ef721e1b 100644 --- a/Source/Project64/main.cpp +++ b/Source/Project64/main.cpp @@ -1,7 +1,7 @@ #include "stdafx.h" -#include -#include "UserInterface\WelcomeScreen.h" -#include "Settings\UISettings.h" +#include +#include "UserInterface/WelcomeScreen.h" +#include "Settings/UISettings.h" int WINAPI WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpszArgs*/, int /*nWinMode*/) { diff --git a/Source/UpdateVersion/UpdateVersion.cpp b/Source/UpdateVersion/UpdateVersion.cpp index a27a6ae7e..90d5bcba9 100644 --- a/Source/UpdateVersion/UpdateVersion.cpp +++ b/Source/UpdateVersion/UpdateVersion.cpp @@ -1,8 +1,8 @@ #include #include -#include -#include -#include +#include +#include +#include int main() { diff --git a/Source/nragev20/Interface.cpp b/Source/nragev20/Interface.cpp index 34701da31..f67db1f4a 100644 --- a/Source/nragev20/Interface.cpp +++ b/Source/nragev20/Interface.cpp @@ -35,7 +35,7 @@ #include "PakIO.h" #include "Version.h" #include "XInputController.h" -#include +#include // Prototypes // BOOL CALLBACK ControllerTabProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );