Browse Source

UI/updater: Fix dll check

jp9000 4 years ago
parent
commit
13ee86ab7f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      UI/win-update/updater/updater.cpp

+ 3 - 3
UI/win-update/updater/updater.cpp

@@ -83,9 +83,9 @@ static inline bool HasVS2019Redist2()
 		}                                                   \
 	} while (false)
 
-	check_dll_installed(L"msvcp140.dll");
-	check_dll_installed(L"vcruntime140.dll");
-	check_dll_installed(L"vcruntime140_1.dll");
+	check_dll_installed(L"msvcp140");
+	check_dll_installed(L"vcruntime140");
+	check_dll_installed(L"vcruntime140_1");
 
 #undef check_dll_installed