From: Lukas Krickl Date: Fri, 7 Nov 2025 07:32:38 +0000 (+0100) Subject: player: cursor now flickers to make it semi-transparent X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=49181ecbb3b668e2ede296c802df0959d76e66bc;p=gbrg%2F.git player: cursor now flickers to make it semi-transparent --- 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