summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2022-10-15 07:40:00 +0200
committerGitHub <noreply@github.com>2022-10-15 01:40:00 -0400
commitd1d946a197e9be2e1f6219f494502d060ffc6e44 (patch)
tree96a0a885abb48a8eac71c6efb5376da94ee99b96 /docs/tutorial
parentd624733bf9afc44afb273eac75145de8a7254939 (diff)
`GameInfo` -> `RegEditor` (#1354)
* -> `RegsContext* gRegsContext` * Name regs-related functions * Revert naming `GameState_UpdateRegs` * -> `gRegEditor` * `Regs_InitContext` -> `Regs_Init` * remove mistakenly added file
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/helper_scripts.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/helper_scripts.md b/docs/tutorial/helper_scripts.md
index efdb31d47..49ca3925c 100644
--- a/docs/tutorial/helper_scripts.md
+++ b/docs/tutorial/helper_scripts.md
@@ -160,15 +160,15 @@ on the address from the `D_address` containing the cutscene data.
## regconvert
-This converts the direct memory references, of the form `gGameInfo->data[index]` or `gGameInfo + 0x<offset>`, into the corresponding REG macros defined in [regs.h](../include/regs.h). Run
+This converts the direct memory references, of the form `gRegEditor->data[index]` or `gRegEditor + 0x<offset>`, into the corresponding REG macros defined in [regs.h](../include/regs.h). Run
```sh
./tools/regconvert.py <index>
```
-if you have it in the form `gGameInfo->data[index]`, or
+if you have it in the form `gRegEditor->data[index]`, or
```sh
./tools/regconvert.py --offset <offset>
```
-if you have it in the form `gGameInfo + 0x<offset>`. You can also run it on a whole file using `--file <path/to/file>`.
+if you have it in the form `gRegEditor + 0x<offset>`. You can also run it on a whole file using `--file <path/to/file>`.
## assist