From e6629ad319fc24fc0006ed3c20861a9c23ae6f61 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 14 Apr 2017 06:09:51 -0500 Subject: [PATCH] Add numbers to charmap --- src/core/gba/gfx.cpp | 20 ++++++++++---------- src/player/main.cpp | 3 ++- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/core/gba/gfx.cpp b/src/core/gba/gfx.cpp index c256a394..7186684c 100644 --- a/src/core/gba/gfx.cpp +++ b/src/core/gba/gfx.cpp @@ -71,16 +71,16 @@ static char charMap[128] = { 0, 0, 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, 0, 0, 0, diff --git a/src/player/main.cpp b/src/player/main.cpp index 90229b2c..1c5378bc 100644 --- a/src/player/main.cpp +++ b/src/player/main.cpp @@ -13,7 +13,8 @@ using namespace nostalgia; int main() { core::init(); core::initConsole(); - core::puts(296, "HELLO, WORLD!"); + core::puts(9 * 32 + 8, "HELLO, WORLD!"); + core::puts(10 * 32 + 8, "01234 56789"); while (1); return 0; }