From 480e32d369f224e18601482ebd6c8f3c5cc5f020 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Wed, 3 Feb 2021 19:20:27 -0500 Subject: [PATCH] Properly add states to the tables... Mind's been split everywhere tonight --- src/dehacked.c | 6 ++++++ src/info.h | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/dehacked.c b/src/dehacked.c index 781c41864..857c838f4 100644 --- a/src/dehacked.c +++ b/src/dehacked.c @@ -5206,16 +5206,22 @@ static const char *const STATE_LIST[] = { // array length left dynamic for sanit "S_KART_STILL_R", "S_KART_STILL_GLANCE_L", "S_KART_STILL_GLANCE_R", + "S_KART_STILL_LOOK_L", + "S_KART_STILL_LOOK_R", "S_KART_SLOW", "S_KART_SLOW_L", "S_KART_SLOW_R", "S_KART_SLOW_GLANCE_L", "S_KART_SLOW_GLANCE_R", + "S_KART_SLOW_LOOK_L", + "S_KART_SLOW_LOOK_R", "S_KART_FAST", "S_KART_FAST_L", "S_KART_FAST_R", "S_KART_FAST_GLANCE_L", "S_KART_FAST_GLANCE_R", + "S_KART_FAST_LOOK_L", + "S_KART_FAST_LOOK_R", "S_KART_DRIFT_L", "S_KART_DRIFT_L_OUT", "S_KART_DRIFT_L_IN", diff --git a/src/info.h b/src/info.h index a8d278fd8..3f8590b7c 100644 --- a/src/info.h +++ b/src/info.h @@ -1066,16 +1066,22 @@ typedef enum state S_KART_STILL_R, S_KART_STILL_GLANCE_L, S_KART_STILL_GLANCE_R, + S_KART_STILL_LOOK_L, + S_KART_STILL_LOOK_R, S_KART_SLOW, S_KART_SLOW_L, S_KART_SLOW_R, S_KART_SLOW_GLANCE_L, S_KART_SLOW_GLANCE_R, + S_KART_SLOW_LOOK_L, + S_KART_SLOW_LOOK_R, S_KART_FAST, S_KART_FAST_L, S_KART_FAST_R, S_KART_FAST_GLANCE_L, S_KART_FAST_GLANCE_R, + S_KART_FAST_LOOK_L, + S_KART_FAST_LOOK_R, S_KART_DRIFT_L, S_KART_DRIFT_L_OUT, S_KART_DRIFT_L_IN,