From 4a732acc36963c4b6d539f24cef2adf241347efa Mon Sep 17 00:00:00 2001 From: UzixLS Date: Wed, 23 Jun 2021 21:15:42 +0300 Subject: [PATCH] magic: fix border when entering menu --- rom_src/main.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rom_src/main.asm b/rom_src/main.asm index 9da0860..b0c4065 100644 --- a/rom_src/main.asm +++ b/rom_src/main.asm @@ -215,11 +215,12 @@ get_im2_handler: save: .mute_saa1099: - ld bc, #01ff ; select saa register + ld bc, #ffff ; select saa register ld a, #1c ; ... out (c), a ; ... - xor a ; mute - out (#ff), a ; ... + ld b, #fe ; mute + xor a ; ... + out (c), a ; ... .save_ay: ld hl, var_save_ay ; select first AY chip in TurboSound ld a, #ff ; ...