From 05b1ce4455a59e7e2167940729f7cdde9fc7d29e Mon Sep 17 00:00:00 2001 From: Manh Date: Sat, 19 Aug 2023 12:45:26 +0700 Subject: [PATCH] Updated Remove the functionally redundant move grammar tables (markdown) --- Remove-the-functionally-redundant-move-grammar-tables.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Remove-the-functionally-redundant-move-grammar-tables.md b/Remove-the-functionally-redundant-move-grammar-tables.md index 9faff7a..38165a4 100644 --- a/Remove-the-functionally-redundant-move-grammar-tables.md +++ b/Remove-the-functionally-redundant-move-grammar-tables.md @@ -13,6 +13,11 @@ Open [src/battle_message.c](https://github.com/pret/pokeemerald/blob/master/src/ ```diff - static void ChooseMoveUsedParticle - static void ChooseTypeOfMoveUsedString +- static const u8 sText_ExclamationMark[] = _("!") +- static const u8 sText_ExclamationMark2[] = _("!") +- static const u8 sText_ExclamationMark3[] = _("!") +- static const u8 sText_ExclamationMark4[] = _("!") +- static const u8 sText_ExclamationMark5[] = _("!") ``` In the same file, look for the functions: `sGrammarMoveUsedTable`, `ChooseMoveUsedParticle` and `ChooseTypeOfMoveUsedString` and remove them completely.