diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-11-27 21:54:15 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-11-27 21:54:15 +0100 |
commit | 7275585d564ba7c619d6c585fc64d71666ae9eb1 (patch) | |
tree | 1c4c70f5e1dc3ea3093bba2c690f0133ab384786 | |
parent | 7144b3b7afc60597168fd85d31f333bb3a4b1826 (diff) |
its flavour, not flavor
-rw-r--r-- | include/battle_message.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/battle_message.h b/include/battle_message.h index 7ea4fc2f6..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_FLAVOR_BUFFER(textVar, flavourId) \ +#define PREPARE_FLAVOR_BUFFER(textVar, flavorId) \ { \ textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \ - textVar[1] = B_BUFF_NEGATIVE_FLAVOR; \ - textVar[2] = flavourId; \ + textVar[1] = B_BUFF_NEGATIVE_FLAVOR; \ + textVar[2] = flavorId; \ textVar[3] = B_BUFF_EOS; \ } |