diff --git a/Windows/PPSSPP.manifest b/Windows/PPSSPP.manifest
index fe6f0ff497..17986528b4 100644
--- a/Windows/PPSSPP.manifest
+++ b/Windows/PPSSPP.manifest
@@ -19,21 +19,6 @@
processorArchitecture="*"/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Windows/main.cpp b/Windows/main.cpp
index 7ccb213e55..f59cead3d1 100644
--- a/Windows/main.cpp
+++ b/Windows/main.cpp
@@ -113,7 +113,6 @@ std::string GetWindowsVersion() {
const bool IsWindows7SP1 = DoesVersionMatchWindows(6, 1, 1, 0);
const bool IsWindows8 = DoesVersionMatchWindows(6, 2);
const bool IsWindows8_1 = DoesVersionMatchWindows(6, 3);
- const bool IsWindows10 = DoesVersionMatchWindows(10, 0);
if (IsWindowsXPSP2)
return "Microsoft Windows XP, Service Pack 2";
@@ -142,9 +141,6 @@ std::string GetWindowsVersion() {
if (IsWindows8_1)
return "Microsoft Windows 8.1";
- if (IsWindows10)
- return "Microsoft Windows 10";
-
return "Unsupported version of Microsoft Windows.";
}