mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-27 21:43:29 +01:00
Windows: correct issue in displaying PDF of User Guide.
This commit is contained in:
parent
dfff927389
commit
a5df5d981a
@ -2515,7 +2515,7 @@ void InitHelpFileName (void)
|
|||||||
|
|
||||||
// Primary file name
|
// Primary file name
|
||||||
if (strcmp (GetPreferredLangId(), "en") == 0
|
if (strcmp (GetPreferredLangId(), "en") == 0
|
||||||
|| GetPreferredLangId() == NULL)
|
|| strlen(GetPreferredLangId()) == 0)
|
||||||
{
|
{
|
||||||
StringCbCatA (szHelpFile, sizeof(szHelpFile), "VeraCrypt User Guide.pdf");
|
StringCbCatA (szHelpFile, sizeof(szHelpFile), "VeraCrypt User Guide.pdf");
|
||||||
}
|
}
|
||||||
@ -2532,7 +2532,7 @@ void InitHelpFileName (void)
|
|||||||
{
|
{
|
||||||
++lpszTmp;
|
++lpszTmp;
|
||||||
*lpszTmp = 0;
|
*lpszTmp = 0;
|
||||||
StringCbCopyA (szHelpFile2, sizeof(szHelpFile2), "VeraCrypt User Guide.pdf");
|
StringCbCatA (szHelpFile2, sizeof(szHelpFile2), "VeraCrypt User Guide.pdf");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user