From 68e63fa4ff68d7124b178a9378a9b293f5ddaed4 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 10 Mar 2026 00:27:10 +0100 Subject: Remove outdated asan:ignore comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was just fixed on nasm, so it's no longer needed. Signed-off-by: Miquel Sabaté Solà --- src/player.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/player.s b/src/player.s index 60005af..08f7872 100644 --- a/src/player.s +++ b/src/player.s @@ -7,9 +7,9 @@ .macro FIXED_POINT_POSITION_TO_SCREEN POS_ADDR ;; We save the high byte into a temporary value, and we load the low byte ;; into the accumulator. - lda POS_ADDR + 1 ; asan:ignore + lda POS_ADDR + 1 sta Globals::zp_tmp0 - lda POS_ADDR ; asan:ignore + lda POS_ADDR ;; And now it's a matter of rotating the high byte into the low one to ;; match a full byte. -- cgit v1.2.3