diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2021-02-05 09:45:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 09:45:18 -0800 |
commit | a539578006be27f27f45bf293ba69a9533cafeae (patch) | |
tree | 17652252d0ba2a06b9234fa070323ac9e9253361 | |
parent | 4be482e587ab113df0b8eb52ab0feb37738f6261 (diff) | |
parent | b391b6cef095b94f98b0566b71661821404f57d5 (diff) |
Merge pull request #798 from CelestialAmber/master
Fix typo
-rw-r--r-- | constants/scgb_constants.asm | 2 | ||||
-rw-r--r-- | data/sgb_ctrl_packets.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/constants/scgb_constants.asm b/constants/scgb_constants.asm index bd4d5f764..bfe56f353 100644 --- a/constants/scgb_constants.asm +++ b/constants/scgb_constants.asm @@ -144,7 +144,7 @@ SCGB_DEFAULT EQU $ff const SGB_ICON_EN const SGB_DATA_SND const SGB_DATA_TRN - const SGB_MLT_REG + const SGB_MLT_REQ const SGB_JUMP const SGB_CHR_TRN const SGB_PCT_TRN diff --git a/data/sgb_ctrl_packets.asm b/data/sgb_ctrl_packets.asm index b3c2b0404..3fd809903 100644 --- a/data/sgb_ctrl_packets.asm +++ b/data/sgb_ctrl_packets.asm @@ -8,7 +8,7 @@ sgb_pal_trn: MACRO ENDM sgb_mlt_req: MACRO - db (SGB_MLT_REG << 3) + 1 + db (SGB_MLT_REQ << 3) + 1 db \1 - 1 ds 14 ENDM |