From 4c8ed456d990ee99884e9dcd245f665ccb894b50 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 19 Mar 2025 17:28:36 +0100 Subject: Disable the PPU between the title to main screens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit During other transitions like game over and such it might also be needed to have something similar, but for now this should cut it. Signed-off-by: Miquel Sabaté Solà --- src/vectors.s | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/vectors.s') diff --git a/src/vectors.s b/src/vectors.s index b06f404..b404d98 100644 --- a/src/vectors.s +++ b/src/vectors.s @@ -103,7 +103,9 @@ bit PPU::STATUS - ;; Update the PPU control register with the shadowed value. + ;; Update the PPU control/mask registers with shadowed values. + lda PPU::zp_mask + sta PPU::MASK lda PPU::zp_control sta PPU::CONTROL -- cgit v1.2.3