wad: Make W_NWTDashMerge parameter const

This commit is contained in:
Turo Lamminen 2018-07-21 16:50:01 +03:00
parent 08a4de5833
commit 45ad423f2b
2 changed files with 2 additions and 2 deletions

View file

@ -670,7 +670,7 @@ void W_NWTMergeFile(char *filename, int flags)
// a PWAD, then search the IWAD sprites, removing any sprite lumps that also
// exist in the PWAD.
void W_NWTDashMerge(char *filename)
void W_NWTDashMerge(const char *filename)
{
wad_file_t *wad_file;
int old_numlumps;

View file

@ -34,7 +34,7 @@ void W_NWTMergeFile(char *filename, int flags);
// Acts the same as NWT's "-merge" option.
void W_NWTDashMerge(char *filename);
void W_NWTDashMerge(const char *filename);
// Debug function that prints the WAD directory.