summaryrefslogtreecommitdiff
path: root/src/code/z_path.c
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2022-10-16 18:00:18 -0400
committerGitHub <noreply@github.com>2022-10-16 18:00:18 -0400
commit26d6028ff1808204aa2978c6c0fe79e5cea9f2bd (patch)
tree5a95186925117732ae4fdb512ec17552f63e6f27 /src/code/z_path.c
parentbea53e1cc390d66b52a28720f5d88db0e887a467 (diff)
Rename scene lists (#1344)
* first pass * revert unwanted zap change * review * name Actor_InitContext, change arg name * change bzero to use type
Diffstat (limited to 'src/code/z_path.c')
-rw-r--r--src/code/z_path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_path.c b/src/code/z_path.c
index db3c8af4d..d27530eb3 100644
--- a/src/code/z_path.c
+++ b/src/code/z_path.c
@@ -4,7 +4,7 @@ Path* Path_GetByIndex(PlayState* play, s16 index, s16 max) {
Path* path;
if (index != max) {
- path = &play->setupPathList[index];
+ path = &play->pathList[index];
} else {
path = NULL;
}