diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-09-01 18:36:08 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-09-01 18:36:08 +0200 |
commit | 38c89b9d0f0c71a2a8dfe2f38473338530a97ab9 (patch) | |
tree | 88ee389c878356a2b6fd6b1a87ad514247c767c9 /include/battle_message.h | |
parent | ce949ba70575c2aebac64a04153529875f9b9758 (diff) |
Bank to battler
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; \ } |