summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-02-10 08:50:39 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2021-02-10 08:50:39 -0500
commit287d893d22792de96856c8c5488ce31ef811a7ff (patch)
tree6096f856785624c395ed10295a6f3db1ce8a7554
parent5b9e6c0299af7b02630122c5cd1e2c65d65b97a8 (diff)
Use PARTY_LENGTH and MAILBOX_CAPACITY constants
-rw-r--r--engine/pokemon/mail.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/pokemon/mail.asm b/engine/pokemon/mail.asm
index 07030da5f..4ad133004 100644
--- a/engine/pokemon/mail.asm
+++ b/engine/pokemon/mail.asm
@@ -241,11 +241,11 @@ BackupPartyMonMail:
call OpenSRAM
ld hl, sPartyMail
ld de, sPartyMailBackup
- ld bc, 6 * MAIL_STRUCT_LENGTH
+ ld bc, PARTY_LENGTH * MAIL_STRUCT_LENGTH
call CopyBytes
ld hl, sMailboxCount
ld de, sMailboxCountBackup
- ld bc, 1 + 10 * MAIL_STRUCT_LENGTH
+ ld bc, 1 + MAILBOX_CAPACITY * MAIL_STRUCT_LENGTH
call CopyBytes
jp CloseSRAM
@@ -254,11 +254,11 @@ RestorePartyMonMail:
call OpenSRAM
ld hl, sPartyMailBackup
ld de, sPartyMail
- ld bc, 6 * MAIL_STRUCT_LENGTH
+ ld bc, PARTY_LENGTH * MAIL_STRUCT_LENGTH
call CopyBytes
ld hl, sMailboxCountBackup
ld de, sMailboxCount
- ld bc, 1 + 10 * MAIL_STRUCT_LENGTH
+ ld bc, 1 + MAILBOX_CAPACITY * MAIL_STRUCT_LENGTH
call CopyBytes
jp CloseSRAM
@@ -267,11 +267,11 @@ DeletePartyMonMail:
call OpenSRAM
xor a
ld hl, sPartyMail
- ld bc, 6 * MAIL_STRUCT_LENGTH
+ ld bc, PARTY_LENGTH * MAIL_STRUCT_LENGTH
call ByteFill
xor a
ld hl, sMailboxCount
- ld bc, 1 + 10 * MAIL_STRUCT_LENGTH
+ ld bc, 1 + MAILBOX_CAPACITY * MAIL_STRUCT_LENGTH
call ByteFill
jp CloseSRAM