hexen: Make SC_Open parameter const
This commit is contained in:
parent
3430e574e1
commit
d5298aab05
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ static boolean AlreadyGot = false;
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void SC_Open(char *name)
|
||||
void SC_Open(const char *name)
|
||||
{
|
||||
char fileName[128];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue