hexen: Fix const correctness issue in TryPickupArtifact
This commit is contained in:
parent
d6817d2d1d
commit
8e3a7b4b8d
1 changed files with 1 additions and 1 deletions
|
|
@ -711,7 +711,7 @@ boolean P_GivePower(player_t * player, powertype_t power)
|
|||
static void TryPickupArtifact(player_t * player, artitype_t artifactType,
|
||||
mobj_t * artifact)
|
||||
{
|
||||
static char *artifactMessages[NUMARTIFACTS] = {
|
||||
static const char *artifactMessages[NUMARTIFACTS] = {
|
||||
NULL,
|
||||
TXT_ARTIINVULNERABILITY,
|
||||
TXT_ARTIHEALTH,
|
||||
|
|
|
|||
Loading…
Reference in a new issue