diff options
author | Tetrable <atiftetra@gmail.com> | 2018-09-09 20:42:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-09 20:42:23 +0100 |
commit | 3a0c26887efb6abc8106671ceefcc098737d823b (patch) | |
tree | 930dcf2dc217011c45671f3bf2017ec9111fd6ed /include/battle_message.h | |
parent | 5a53d6d1fb304736c1fb3c222192a3b722707bca (diff) | |
parent | e1834c9d7bc961f872169e056b788fec04f39867 (diff) |
Merge pull request #3 from pret/master
merge
Diffstat (limited to 'include/battle_message.h')
-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 c68607246..94f584935 100644 --- a/include/battle_message.h +++ b/include/battle_message.h @@ -177,20 +177,20 @@ textVar[4] = B_BUFF_EOS; \ } -#define PREPARE_MON_NICK_WITH_PREFIX_BUFFER(textVar, bank, partyId) \ +#define PREPARE_MON_NICK_WITH_PREFIX_BUFFER(textVar, battler, partyId) \ { \ textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \ textVar[1] = B_BUFF_MON_NICK_WITH_PREFIX; \ - textVar[2] = bank; \ + textVar[2] = battler; \ textVar[3] = partyId; \ textVar[4] = B_BUFF_EOS; \ } -#define PREPARE_MON_NICK_BUFFER(textVar, bank, partyId) \ +#define PREPARE_MON_NICK_BUFFER(textVar, battler, partyId) \ { \ textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \ textVar[1] = B_BUFF_MON_NICK; \ - textVar[2] = bank; \ + textVar[2] = battler; \ textVar[3] = partyId; \ textVar[4] = B_BUFF_EOS; \ } |