diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-07-20 14:16:50 +0000 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-07-20 14:16:50 +0000 |
commit | 1fd90c77fd8bb752fba99922bf22d46a7d6d82dc (patch) | |
tree | 3cf016c3fb91b3aaa2aca168bdb76ef47b235fbd /Code-cleanup.md | |
parent | d54021e44a4e566582779fbd5010549c7ed006a2 (diff) |
Updated Code cleanup (markdown)
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 |