diff --git a/pcsx2/CMakeLists.txt b/pcsx2/CMakeLists.txt
index d12a775c4d..f45fc2c0a0 100644
--- a/pcsx2/CMakeLists.txt
+++ b/pcsx2/CMakeLists.txt
@@ -201,7 +201,6 @@ set(pcsx2Headers
MemoryTypes.h
NakedAsm.h
Patch.h
- Patch_Obsolete.h
PathDefs.h
Plugins.h
PrecompiledHeader.h
diff --git a/pcsx2/Patch_Obsolete.h b/pcsx2/Patch_Obsolete.h
deleted file mode 100644
index 916640a5ca..0000000000
--- a/pcsx2/Patch_Obsolete.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/* PCSX2 - PS2 Emulator for PCs
- * Copyright (C) 2002-2010 PCSX2 Dev Team
- *
- * PCSX2 is free software: you can redistribute it and/or modify it under the terms
- * of the GNU Lesser General Public License as published by the Free Software Found-
- * ation, either version 3 of the License, or (at your option) any later version.
- *
- * PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with PCSX2.
- * If not, see .
- */
-
-// Old Patching functions that are currently not used
-// so out-sourced them to this header file that isn't referenced...
-
-// Obsolete code used by old cheats-gui code...
-int AddPatch(int Mode, int Place, int Address, int Size, u64 data)
-{
- if ( patchnumber >= MAX_PATCH )
- {
- Console.Error( "Patch ERROR: Maximum number of patches reached.");
- return -1;
- }
-
- Patch[patchnumber].placetopatch = Mode;
- Patch[patchnumber].cpu = (patch_cpu_type)Place;
- Patch[patchnumber].addr = Address;
- Patch[patchnumber].type = (patch_data_type)Size;
- Patch[patchnumber].data = data;
- return patchnumber++;
-}
-
-void PrintPatch(int i)
-{
- Console.WriteLn("Patch[%d]:", i);
- if (Patch[i].enabled == 0)
- Console.WriteLn("Disabled.");
- else
- Console.WriteLn("Enabled.");
-
- Console.WriteLn("PlaceToPatch:%d", Patch[i].placetopatch);
-
- switch(Patch[i].cpu)
- {
- case CPU_EE: Console.WriteLn("Cpu: EE"); break;
- case CPU_IOP: Console.WriteLn("Cpu: IOP"); break;
- default: Console.WriteLn("Cpu: None"); break;
- }
-
- Console.WriteLn("Address: %X", Patch[i].addr);
-
- switch (Patch[i].type)
- {
- case BYTE_T: Console.WriteLn("Type: Byte"); break;
- case SHORT_T: Console.WriteLn("Type: Short"); break;
- case WORD_T: Console.WriteLn("Type: Word"); break;
- case DOUBLE_T: Console.WriteLn("Type: Double"); break;
- case EXTENDED_T: Console.WriteLn("Type: Extended"); break;
-
- default: Console.WriteLn("Type: None"); break;
- }
-
- Console.WriteLn("Data: %I64X", Patch[i].data);
-}
-
-void ResetPatch( void )
-{
- patchnumber = 0;
-}
-
-void PrintRoundMode(SSE_RoundMode ee, SSE_RoundMode vu)
-{
- switch(ee)
- {
- case SSEround_Nearest: DevCon.WriteLn("EE: Near"); break;
- case SSEround_NegInf: DevCon.WriteLn("EE: Down"); break;
- case SSEround_PosInf: DevCon.WriteLn("EE: Up"); break;
- case SSEround_Chop: DevCon.WriteLn("EE: Chop"); break;
- default: DevCon.WriteLn("EE: ?"); break;
- }
-
- switch(vu)
- {
- case SSEround_Nearest: DevCon.WriteLn("VU: Near"); break;
- case SSEround_NegInf: DevCon.WriteLn("VU: Down"); break;
- case SSEround_PosInf: DevCon.WriteLn("VU: Up"); break;
- case SSEround_Chop: DevCon.WriteLn("VU: Chop"); break;
- default: DevCon.WriteLn("VU: ?"); break;
- }
-}
diff --git a/pcsx2/windows/VCprojects/pcsx2.vcxproj b/pcsx2/windows/VCprojects/pcsx2.vcxproj
index ffdc835edd..3c300a4462 100644
--- a/pcsx2/windows/VCprojects/pcsx2.vcxproj
+++ b/pcsx2/windows/VCprojects/pcsx2.vcxproj
@@ -729,7 +729,6 @@
-
@@ -935,4 +934,4 @@
-
\ No newline at end of file
+
diff --git a/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters b/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters
index 58e067409c..bf7cde5319 100644
--- a/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters
+++ b/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters
@@ -1209,7 +1209,6 @@
-
System\Ps2\IPU
@@ -1352,4 +1351,4 @@
AppHost\Resources
-
\ No newline at end of file
+
diff --git a/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj b/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj
index d943f6d21e..0074b21d05 100644
--- a/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj
+++ b/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj
@@ -716,7 +716,6 @@
-
@@ -940,4 +939,4 @@
-
\ No newline at end of file
+
diff --git a/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj.filters b/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj.filters
index c7e5d13ce1..4a7844aad0 100644
--- a/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj.filters
+++ b/pcsx2/windows/VCprojects/pcsx2_vs2012.vcxproj.filters
@@ -1206,7 +1206,6 @@
-
System\Ps2\IPU
@@ -1352,4 +1351,4 @@
AppHost\Resources
-
\ No newline at end of file
+
diff --git a/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj b/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj
index b9e5e34652..d899bcd3ae 100644
--- a/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj
+++ b/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj
@@ -716,7 +716,6 @@
-
@@ -940,4 +939,4 @@
-
\ No newline at end of file
+
diff --git a/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj.filters b/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj.filters
index bb0ca63bdd..53daa759a9 100644
--- a/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj.filters
+++ b/pcsx2/windows/VCprojects/pcsx2_vs2013.vcxproj.filters
@@ -1206,7 +1206,6 @@
-
System\Ps2\IPU
@@ -1352,4 +1351,4 @@
AppHost\Resources
-
\ No newline at end of file
+