summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2021-12-01 00:40:42 +0100
committerGitHub <noreply@github.com>2021-11-30 18:40:42 -0500
commit669732abbe78ad6dad6b5f7273f595befd630cba (patch)
treef3d8ea1506fbfceadbae8512eb7939b6a55847f5 /docs/tutorial
parent04a9d51e90bd87acf7205462b7206dd91ddb139c (diff)
Misc Cleanup 2 (#1007)
* Cleanup `UNK_TYPE`, `UNK_PTR` usage * Add some missing empty lines after declarations * Remove some legacy comments from non-matching times * Fix some grammar (mostly "it's"/"its") * Use proper names for two symbols after ZAPD bugfix * Cleanup `place_title_cards.xml` * Use `NULL` to check against `D_8012D260` pointer * Parentheses around some macro arguments * wip proofread headers up to z64animation.h
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/other_functions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/other_functions.md b/docs/tutorial/other_functions.md
index e07b603c2..1ee495748 100644
--- a/docs/tutorial/other_functions.md
+++ b/docs/tutorial/other_functions.md
@@ -154,7 +154,7 @@ typedef struct EnJj {
} EnJj; // size = 0x0314
```
-We can eliminate the temp since it's use in a simple way one after the other. `this->unk308 = (s16) (this->unk308 - 0x66);` can be written as `this->unk308 -= 0x66;`.
+We can eliminate the temp since it's used in a simple way one after the other. `this->unk308 = (s16) (this->unk308 - 0x66);` can be written as `this->unk308 -= 0x66;`.
In the `func_8003EBF8` we see that we should have at least made `this->childActor` a `DynaPolyActor*`, so that the last argument is its `bgId`. To avoid compiler warnings, we also need to cast the `Actor_SpawnAsChild` as such in Init,
```C