From 49181ecbb3b668e2ede296c802df0959d76e66bc Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Fri, 7 Nov 2025 08:32:38 +0100 Subject: [PATCH] player: cursor now flickers to make it semi-transparent --- src/player.s | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/player.s b/src/player.s index 1de61f6..46a11b3 100644 --- a/src/player.s +++ b/src/player.s @@ -63,6 +63,12 @@ move_cursor: ; draws player at current location player_draw: + ; flicker the cursor + ; for transparency effect + ld a, [frame_count] + and a, 1 + ret z + ld a, 2 call oamalloc -- 2.30.2