From 26d6028ff1808204aa2978c6c0fe79e5cea9f2bd Mon Sep 17 00:00:00 2001 From: fig02 Date: Sun, 16 Oct 2022 18:00:18 -0400 Subject: Rename scene lists (#1344) * first pass * revert unwanted zap change * review * name Actor_InitContext, change arg name * change bzero to use type --- src/code/z_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/code/z_path.c') 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; } -- cgit v1.2.3