From fa8c2de01ea55d805ac54590d40df63a198d6b3a Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Fri, 26 Jul 2024 18:05:32 +1000 Subject: [PATCH] Update ascii.h --- src/ascii.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/ascii.h b/src/ascii.h index 3e0232a..1704e76 100644 --- a/src/ascii.h +++ b/src/ascii.h @@ -1,4 +1,9 @@ -int ascii [128][4] = { // BLK (X/Y, WHT (X/Y)) +/********************************* + ** ASCII spritemap X/Y coords ** + ********************************* +// Black X,Y, White X,Y + +int ascii [128][4] = { {518, 49, 582, 49}, // NUL Null {518, 49, 582, 49}, // SOH Start Of Heading {518, 49, 582, 49}, // STX Start of TeXt @@ -127,4 +132,4 @@ int ascii [128][4] = { // BLK (X/Y, WHT (X/Y)) {470, 49, 534, 49}, // } Right curly bracket {494, 43, 558, 43}, // ~ Tilde {518, 49, 582, 49}, // DEL DELete -}; \ No newline at end of file +};