summaryrefslogtreecommitdiff
path: root/Code-cleanup.md
diff options
context:
space:
mode:
Diffstat (limited to 'Code-cleanup.md')
-rw-r--r--Code-cleanup.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Code-cleanup.md b/Code-cleanup.md
index 512c807..d63fa5d 100644
--- a/Code-cleanup.md
+++ b/Code-cleanup.md
@@ -43,12 +43,12 @@ grep -rE --include='*.asm' --exclude-dir=mobile '^\s(bit|res|set) [0-7],'
### Text label styles in [data/text/](../tree/master/data/text/)
-Currently a mixture of `Text_*`, `*Text`, and `BattleText_*`. Likewise for the [engine/](../tree/master/engine/) labels that just `text_jump` to one of them.
+Currently a mixture of `Text_*`, `*Text`, and `BattleText_*`. Likewise for the [engine/](../tree/master/engine/) labels that just `text_far` to one of them.
The convention that should be used is as follows:
- Use suffixes, i.e. not `Text_Something`, but `SomethingText`. Same for `Movement`.
-- Labels that are referenced through `text_jump` should be prefixed with an underscore, e.g. `SomethingText: text_jump _SomethingText`.
+- Labels that are referenced through `text_far` should be prefixed with an underscore, e.g. `SomethingText: text_far _SomethingText`.
### WRAM label style