diff options
Diffstat (limited to 'Code-cleanup.md')
-rw-r--r-- | Code-cleanup.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Code-cleanup.md b/Code-cleanup.md index d0da146..882c0e4 100644 --- a/Code-cleanup.md +++ b/Code-cleanup.md @@ -44,6 +44,10 @@ Most of the time, raw numbers should not exist because there are more meaningful Currently a mixture of `Text_*`, `*Text`, and `BattleText_*`. Likewise for the [engine/](../tree/master/engine/) labels that just `text_jump` 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, i.e. `_SomethingText` + ### WRAM label style |