summaryrefslogtreecommitdiff
path: root/ZAPD/GameConfig.cpp
diff options
context:
space:
mode:
authorlouist103 <35883445+louist103@users.noreply.github.com>2024-01-09 20:17:20 -0500
committerGitHub <noreply@github.com>2024-01-09 20:17:20 -0500
commit9601f2699c142bb8273d33763ef4d84e8a7d650f (patch)
tree61be8e5ab2be9a83949a82e3c05c56eeb6afe13b /ZAPD/GameConfig.cpp
parent5238d604ecb8d661008c1e1be64889f13cb054ec (diff)
Mm spline fixes (#311)
* Add enum file * Last fix
Diffstat (limited to 'ZAPD/GameConfig.cpp')
-rw-r--r--ZAPD/GameConfig.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/ZAPD/GameConfig.cpp b/ZAPD/GameConfig.cpp
index cf6cdcc..2140464 100644
--- a/ZAPD/GameConfig.cpp
+++ b/ZAPD/GameConfig.cpp
@@ -247,6 +247,12 @@ void GameConfig::ConfigFunc_EnumData(const tinyxml2::XMLElement& element)
else if (enumKey == "endSfx")
enumData.endSfx[itemIndex] = itemID;
+
+ else if (enumKey == "csSplineInterpType")
+ enumData.interpType[itemIndex] = itemID;
+
+ else if (enumKey == "csSplineRelTo")
+ enumData.relTo[itemIndex] = itemID;
}
}
}