summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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