wad: Make W_MergeFile parameter const
This commit is contained in:
parent
a138539a57
commit
08a4de5833
2 changed files with 2 additions and 2 deletions
|
|
@ -567,7 +567,7 @@ void W_PrintDirectory(void)
|
|||
|
||||
// Merge in a file by name
|
||||
|
||||
void W_MergeFile(char *filename)
|
||||
void W_MergeFile(const char *filename)
|
||||
{
|
||||
int old_numlumps;
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
// Add a new WAD and merge it into the main directory
|
||||
|
||||
void W_MergeFile(char *filename);
|
||||
void W_MergeFile(const char *filename);
|
||||
|
||||
// NWT-style merging
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue