From 13a5c1e5348803efc1abe692167022c3229a9bb2 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Sun, 19 Jan 2020 17:46:21 +0100
Subject: [PATCH] Fixed tile-keys.
---
src/apple2/platA2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/apple2/platA2.c b/src/apple2/platA2.c
index edc1a4a..dacc5cd 100644
--- a/src/apple2/platA2.c
+++ b/src/apple2/platA2.c
@@ -95,8 +95,8 @@ void plat_Init()
// Add the A..H and 1..8 tile-keys
for(i=0; i<8; ++i)
{
- plat_Drawchar(3+i*BOARD_PIECE_WIDTH,0, ROP_CPY,i+'A');
- plat_Drawchar(0,21+i*BOARD_PIECE_HEIGHT,ROP_CPY,i+'1');
+ plat_Drawchar(3+i*BOARD_PIECE_WIDTH,0, ROP_CPY,i+'A');
+ plat_Drawchar(0,SCREEN_HEIGHT-17-i*BOARD_PIECE_HEIGHT,ROP_CPY,i+'1');
}
// Setting this to 0 will not show the "Quit" option in the main menu