hexen: Fix const correctness issue in TryPickupArtifact

This commit is contained in:
Turo Lamminen 2018-12-11 19:00:18 +02:00
parent d6817d2d1d
commit 8e3a7b4b8d

View file

@ -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,