From b17e39a7013a7e9cc08a6940e85bc59c660e1c0d Mon Sep 17 00:00:00 2001 From: Yukita Mayako Date: Fri, 29 May 2015 15:52:38 -0400 Subject: [PATCH] Add missing string constants. --- src/dehacked.c | 4 ++++ src/info.c | 1 + 2 files changed, 5 insertions(+) diff --git a/src/dehacked.c b/src/dehacked.c index 16e1ad329..5b402a005 100644 --- a/src/dehacked.c +++ b/src/dehacked.c @@ -3770,6 +3770,7 @@ static const char *const STATE_LIST[] = { // array length left dynamic for sanit "S_PLAY_SUPER_WALK", "S_PLAY_SUPER_RUN", "S_PLAY_SUPER_PAIN", + "S_PLAY_SUPER_STUN", "S_PLAY_SUPER_DEAD", "S_PLAY_SUPER_DRWN", "S_PLAY_SUPER_SPIN", @@ -7666,9 +7667,12 @@ struct { {"PA_IDLE",PA_IDLE}, {"PA_WALK",PA_WALK}, {"PA_RUN",PA_RUN}, + {"PA_PAIN",PA_PAIN}, {"PA_ROLL",PA_ROLL}, + {"PA_JUMP",PA_JUMP}, {"PA_FALL",PA_FALL}, {"PA_ABILITY",PA_ABILITY}, + {"PA_RIDE",PA_RIDE}, // Current weapon {"WEP_AUTO",WEP_AUTO}, diff --git a/src/info.c b/src/info.c index 2a8f7d6a7..3a72f992a 100644 --- a/src/info.c +++ b/src/info.c @@ -88,6 +88,7 @@ char spr2names[NUMPLAYERSPRITES][5] = "SWLK", "SRUN", "SPAN", + "SMSL", "SDTH", "SDRN", "SSPN",