diff options
author | Ladislav Zezula <zezula@volny.cz> | 2022-06-12 20:49:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-12 20:49:30 +0200 |
commit | 0edf4b9d3823589b2630e777e29907c97a0cc514 (patch) | |
tree | e2dcd153c9876bf5adeca0bd8479bce6b5c410ab /src/StormCommon.h | |
parent | 5e179844a864e130918f045165a75fa268629b4a (diff) | |
parent | d5d2413e951165aa19e926d9f6ad63a818bbce78 (diff) |
Merge pull request #258 from ladislav-zezula/LZ_ReplaceVersusOpen
Fixed
Diffstat (limited to 'src/StormCommon.h')
-rw-r--r-- | src/StormCommon.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/StormCommon.h b/src/StormCommon.h index 865d975..7ff55e8 100644 --- a/src/StormCommon.h +++ b/src/StormCommon.h @@ -282,8 +282,7 @@ TMPQBetTable * CreateBetTable(DWORD dwMaxFileCount); void FreeBetTable(TMPQBetTable * pBetTable);
// Functions for finding files in the file table
-TFileEntry * GetFileEntryLocale2(TMPQArchive * ha, const char * szFileName, LCID lcLocale, LPDWORD PtrHashIndex);
-TFileEntry * GetFileEntryLocale(TMPQArchive * ha, const char * szFileName, LCID lcLocale);
+TFileEntry * GetFileEntryLocale(TMPQArchive * ha, const char * szFileName, LCID lcLocale, LPDWORD PtrHashIndex = NULL);
TFileEntry * GetFileEntryExact(TMPQArchive * ha, const char * szFileName, LCID lcLocale, LPDWORD PtrHashIndex);
// Allocates file name in the file entry
|