d_iwad: Make DirIsFile path parameter const

This commit is contained in:
Turo Lamminen 2018-03-31 17:44:32 +03:00
parent 5ea48856cc
commit b1af844e71

View file

@ -448,7 +448,7 @@ static void CheckDOSDefaults(void)
// Returns true if the specified path is a path to a file
// of the specified name.
static boolean DirIsFile(char *path, char *filename)
static boolean DirIsFile(const char *path, char *filename)
{
size_t path_len;
size_t filename_len;