Rename scene lists (#1344)

* first pass

* revert unwanted zap change

* review

* name Actor_InitContext, change arg name

* change bzero to use type
This commit is contained in:
fig02
2022-10-16 18:00:18 -04:00
committed by GitHub
parent bea53e1cc3
commit 26d6028ff1
33 changed files with 148 additions and 143 deletions
+1 -1
View File
@@ -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;
}