diff options
author | Ladislav Zezula <zezula@volny.cz> | 2023-10-06 06:38:05 +0200 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2023-10-06 06:38:05 +0200 |
commit | 0d89b2b473dc618c5f5f5fb051121e34cdedad00 (patch) | |
tree | 1bfd88dd8719250ee7ffaa232747e6d5ab27ab08 /src/SFileAddFile.cpp | |
parent | c9ac60d64bf00bfd7a511dd2112a152942eb67a5 (diff) |
Fixed bug in SFileSetFileLocale
Diffstat (limited to 'src/SFileAddFile.cpp')
-rw-r--r-- | src/SFileAddFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SFileAddFile.cpp b/src/SFileAddFile.cpp index 2d14dda..1baf1fa 100644 --- a/src/SFileAddFile.cpp +++ b/src/SFileAddFile.cpp @@ -433,7 +433,7 @@ DWORD SFileAddFile_Init( // Fix Key is not allowed if the file is not encrypted
if(!(dwFlags & MPQ_FILE_ENCRYPTED))
- dwFlags &= ~MPQ_FILE_FIX_KEY;
+ dwFlags &= ~MPQ_FILE_KEY_V2;
// If the MPQ is of version 3.0 or higher, we ignore file locale.
// This is because HET and BET tables have no known support for it
@@ -1303,7 +1303,7 @@ bool WINAPI SFileSetFileLocale(HANDLE hFile, LCID lcNewLocale) }
// We have to check if the file+locale is not already there
- pFileEntry = GetFileEntryLocale(ha, hf->pFileEntry->szFileName, lcNewLocale, NULL);
+ pFileEntry = GetFileEntryExact(ha, hf->pFileEntry->szFileName, lcNewLocale, NULL);
if(pFileEntry != NULL)
{
SetLastError(ERROR_ALREADY_EXISTS);
|