hexen: Fix const correctness issues in TryPickupWeaponPiece
This commit is contained in:
parent
bd36e1a19d
commit
d6817d2d1d
1 changed files with 2 additions and 2 deletions
|
|
@ -412,12 +412,12 @@ static void TryPickupWeaponPiece(player_t * player, pclass_t matchClass,
|
|||
boolean checkAssembled;
|
||||
boolean gaveWeapon;
|
||||
int gaveMana;
|
||||
static char *fourthWeaponText[] = {
|
||||
static const char *fourthWeaponText[] = {
|
||||
TXT_WEAPON_F4,
|
||||
TXT_WEAPON_C4,
|
||||
TXT_WEAPON_M4
|
||||
};
|
||||
static char *weaponPieceText[] = {
|
||||
static const char *weaponPieceText[] = {
|
||||
TXT_QUIETUS_PIECE,
|
||||
TXT_WRAITHVERGE_PIECE,
|
||||
TXT_BLOODSCOURGE_PIECE
|
||||
|
|
|
|||
Loading…
Reference in a new issue