hexen: Make SC_Open parameter const

This commit is contained in:
Turo Lamminen 2018-08-07 18:13:11 +03:00
parent 3430e574e1
commit d5298aab05
2 changed files with 2 additions and 2 deletions

View file

@ -904,7 +904,7 @@ int M_DrawText(int x, int y, boolean direct, char *string);
// SC_man.c
//------------------------------
void SC_Open(char *name);
void SC_Open(const char *name);
void SC_OpenLump(const char *name);
void SC_OpenFile(char *name);
void SC_Close(void);

View file

@ -74,7 +74,7 @@ static boolean AlreadyGot = false;
//
//==========================================================================
void SC_Open(char *name)
void SC_Open(const char *name)
{
char fileName[128];