summaryrefslogtreecommitdiff
path: root/include/battle_message.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/battle_message.h')
-rw-r--r--include/battle_message.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/battle_message.h b/include/battle_message.h
index a820ff287..30ddca469 100644
--- a/include/battle_message.h
+++ b/include/battle_message.h
@@ -67,18 +67,18 @@
#define B_BUFF_STAT 5
#define B_BUFF_SPECIES 6
#define B_BUFF_MON_NICK 7
-#define B_BUFF_NEGATIVE_FLAVOR 8
+#define B_BUFF_NEGATIVE_FLAVOR 8
#define B_BUFF_ABILITY 9
#define B_BUFF_ITEM 10
#define B_BUFF_PLACEHOLDER_BEGIN 0xFD
#define B_BUFF_EOS 0xFF
-#define PREPARE_FLAVOUR_BUFFER(textVar, flavourId) \
+#define PREPARE_FLAVOR_BUFFER(textVar, flavorId) \
{ \
textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \
- textVar[1] = B_BUFF_NEGATIVE_FLAVOUR; \
- textVar[2] = flavourId; \
+ textVar[1] = B_BUFF_NEGATIVE_FLAVOR; \
+ textVar[2] = flavorId; \
textVar[3] = B_BUFF_EOS; \
}