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; }