mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-24 18:21:34 +00:00
Disinclude unused function when NOMD5
This commit is contained in:
parent
987d2ee59a
commit
7b143cc87b
1 changed files with 3 additions and 5 deletions
|
@ -307,12 +307,10 @@ static void W_LoadDehackedLumps(UINT16 wadnum, boolean mainfile)
|
||||||
* \param resblock resulting MD5 checksum
|
* \param resblock resulting MD5 checksum
|
||||||
* \return 0 if MD5 checksum was made, and is at resblock, 1 if error was found
|
* \return 0 if MD5 checksum was made, and is at resblock, 1 if error was found
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef NOMD5
|
||||||
static INT32 W_MakeFileMD5(const char *filename, void *resblock)
|
static INT32 W_MakeFileMD5(const char *filename, void *resblock)
|
||||||
{
|
{
|
||||||
#ifdef NOMD5
|
|
||||||
(void)filename;
|
|
||||||
memset(resblock, 0x00, 16);
|
|
||||||
#else
|
|
||||||
FILE *fhandle;
|
FILE *fhandle;
|
||||||
|
|
||||||
if ((fhandle = fopen(filename, "rb")) != NULL)
|
if ((fhandle = fopen(filename, "rb")) != NULL)
|
||||||
|
@ -329,9 +327,9 @@ static INT32 W_MakeFileMD5(const char *filename, void *resblock)
|
||||||
fclose(fhandle);
|
fclose(fhandle);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Invalidates the cache of lump numbers. Call this whenever a wad is added.
|
// Invalidates the cache of lump numbers. Call this whenever a wad is added.
|
||||||
static void W_InvalidateLumpnumCache(void)
|
static void W_InvalidateLumpnumCache(void)
|
||||||
|
|
Loading…
Reference in a new issue