فهرست منبع

UI: Fix game capture check when about to update

To check to see if a file is locked, it must be opened for writing, not
reading.
jp9000 8 سال پیش
والد
کامیت
f1aba65bbb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      UI/win-update/win-update.cpp

+ 1 - 1
UI/win-update/win-update.cpp

@@ -510,7 +510,7 @@ int AutoUpdateThread::queryUpdate(bool manualUpdate, const char *text_utf8)
 
 static bool IsFileInUse(const wstring &file)
 {
-	WinHandle f = CreateFile(file.c_str(), GENERIC_READ, 0, nullptr,
+	WinHandle f = CreateFile(file.c_str(), GENERIC_WRITE, 0, nullptr,
 			OPEN_EXISTING, 0, nullptr);
 	if (!f.Valid()) {
 		int err = GetLastError();