hexen: Fix const correctness issue in GetFinaleText
This commit is contained in:
parent
7005e93818
commit
9afe244903
1 changed files with 2 additions and 2 deletions
|
|
@ -366,10 +366,10 @@ void F_Drawer(void)
|
|||
|
||||
static char *GetFinaleText(int sequence)
|
||||
{
|
||||
char *msgLumpName;
|
||||
const char *msgLumpName;
|
||||
int msgSize;
|
||||
int msgLump;
|
||||
static char *winMsgLumpNames[] = {
|
||||
static const char *winMsgLumpNames[] = {
|
||||
"win1msg",
|
||||
"win2msg",
|
||||
"win3msg"
|
||||
|
|
|
|||
Loading…
Reference in a new issue