Some pathing docs (#1205)

* Some pathing docs

* Missed one

* Uno mas

* Uno mas x2

* Cleanup

* fix

* namefixer

* NULL

* More

* PR

* Actually remove SQ

* -1 define, plus some more pathing cleanup

* Actor macros instead

* Format

* ADDITIONAL_PATH_INDEX_NONE

* Remove reliance on PATH_INDEX_NONE

* Missed some PathIndex cleanup

* Review

* format
This commit is contained in:
Derek Hensley
2023-06-04 19:46:39 -07:00
committed by GitHub
parent 47bc7c12e2
commit cd53dd317f
125 changed files with 450 additions and 347 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
#include "global.h"
Path* Path_GetByIndex(PlayState* play, s16 index, s16 max) {
Path* Path_GetByIndex(PlayState* play, s16 index, s16 indexNone) {
Path* path;
if (index != max) {
if (index != indexNone) {
path = &play->setupPathList[index];
} else {
path = NULL;