From 287d893d22792de96856c8c5488ce31ef811a7ff Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 10 Feb 2021 08:50:39 -0500 Subject: [PATCH] Use PARTY_LENGTH and MAILBOX_CAPACITY constants --- engine/pokemon/mail.asm | 12 ++++++------ 1 file 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