From 7f31185223049b357845ebb6ccb2f0a115830ada Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 23 Jan 2022 11:06:37 -0800 Subject: [PATCH] Fixed debug rendering arrow --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ac40606..4c7b7f5 100644 --- a/src/main.c +++ b/src/main.c @@ -147,9 +147,9 @@ void main() { } if(j == POKER_PLAYER_BETTER) { - tiles[5] = mainGetChar('<'); + tiles[6] = mainGetChar('<'); } else { - tiles[5] = COMMON_TILE_3; + tiles[6] = COMMON_TILE_3; } set_bkg_tiles(0x00, j, 7, 1, tiles); }