summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFieryMewtwo <77066742+FieryMewtwo@users.noreply.github.com>2021-10-26 17:51:32 -0400
committerFieryMewtwo <77066742+FieryMewtwo@users.noreply.github.com>2021-10-26 17:51:32 -0400
commitce79f797bc64a81fa13cb6386ca5d9abc20ca133 (patch)
tree7a78eda73a3fd53e83a0af27b76019c993798537
parent53a014178d03d69352ed0f479f1af7c7239915cd (diff)
Updated Remove the functionally redundant move grammar tables (markdown)
-rw-r--r--Remove-the-functionally-redundant-move-grammar-tables.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Remove-the-functionally-redundant-move-grammar-tables.md b/Remove-the-functionally-redundant-move-grammar-tables.md
index b8f1a15..9faff7a 100644
--- a/Remove-the-functionally-redundant-move-grammar-tables.md
+++ b/Remove-the-functionally-redundant-move-grammar-tables.md
@@ -11,8 +11,8 @@ This tutorial will show you how to remove them, which saves space and simplifies
Open [src/battle_message.c](https://github.com/pret/pokeemerald/blob/master/src/battle_message.c) and remove the following declarations:
```diff
-static void ChooseMoveUsedParticle
-static void ChooseTypeOfMoveUsedString
+- static void ChooseMoveUsedParticle
+- static void ChooseTypeOfMoveUsedString
```
In the same file, look for the functions: `sGrammarMoveUsedTable`, `ChooseMoveUsedParticle` and `ChooseTypeOfMoveUsedString` and remove them completely.