wad: Make W_NWTDashMerge parameter const
This commit is contained in:
parent
08a4de5833
commit
45ad423f2b
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue