mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[12680] Fixed false vmap extrator error, submitted updated extractor binary
This commit is contained in:
parent
0d939a804c
commit
5c4b9d3ccd
3 changed files with 4 additions and 2 deletions
Binary file not shown.
|
|
@ -12,6 +12,8 @@ MPQFile::MPQFile(HANDLE mpq, const char* filename):
|
|||
HANDLE file;
|
||||
if (!SFileOpenFileEx(mpq, filename, SFILE_OPEN_PATCHED_FILE, &file))
|
||||
{
|
||||
int error = GetLastError();
|
||||
if ( error != ERROR_FILE_NOT_FOUND )
|
||||
fprintf(stderr, "Can't open %s, err=%u!\n", filename, GetLastError());
|
||||
eof = true;
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "12679"
|
||||
#define REVISION_NR "12680"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue