hexen: Make SC_OpenLump parameter const
This commit is contained in:
parent
a1a4a8190d
commit
3430e574e1
2 changed files with 2 additions and 2 deletions
|
|
@ -905,7 +905,7 @@ int M_DrawText(int x, int y, boolean direct, char *string);
|
|||
//------------------------------
|
||||
|
||||
void SC_Open(char *name);
|
||||
void SC_OpenLump(char *name);
|
||||
void SC_OpenLump(const char *name);
|
||||
void SC_OpenFile(char *name);
|
||||
void SC_Close(void);
|
||||
boolean SC_GetString(void);
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ void SC_Open(char *name)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void SC_OpenLump(char *name)
|
||||
void SC_OpenLump(const char *name)
|
||||
{
|
||||
OpenScript(name, LUMP_SCRIPT);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue