Skip to content

Commit 748e5d1

Browse files
committed
fixed readme one last time
1 parent 6192214 commit 748e5d1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,14 @@ auto GetImportState = (f_GetSymbolState)GetProcAddress(hInjectionMod, "GetImport
6969
auto StartDownload = (f_StartDownload)GetProcAddress(hInjectionMod, "StartDownload");
7070
auto GetDownloadProgressEx = (f_GetDownloadProgressEx)GetProcAddress(hInjectionMod, "GetDownloadProgressEx");
7171

72+
//due to a minor bug in the current version you have to wait a bit before starting the download
73+
//will be fixed in version 4.7
74+
Sleep(500);
75+
7276
StartDownload();
7377

74-
//since GetSymbolState and GetImportState only return after the downloads are finished checking the download progress is not necessary
78+
//since GetSymbolState and GetImportState only return after the downloads are finished
79+
//checking the download progress is not necessary
7580
while (GetDownloadProgressEx(PDB_DOWNLOAD_INDEX_NTDLL, false) != 1.0f)
7681
{
7782
Sleep(10);

0 commit comments

Comments
 (0)