From ea51e993bcdb35fd674b42b953eae01c6b7fff75 Mon Sep 17 00:00:00 2001 From: williamblair Date: Sun, 30 Jun 2019 16:42:30 -0400 Subject: fix FntLoad to non-zero y locations for debug font --- libpsn00b/psxetc/font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libpsn00b/psxetc/font.c b/libpsn00b/psxetc/font.c index 2f062b7..69d864c 100644 --- a/libpsn00b/psxetc/font.c +++ b/libpsn00b/psxetc/font.c @@ -19,7 +19,7 @@ void FntLoad(int x, int y) { pos.x = x; pos.y = y; - _font_tpage = getTPage( 0, 0, pos.x, 0 ) | 0x200; + _font_tpage = getTPage( 0, 0, pos.x, pos.y ) | 0x200; LoadImage( &pos, tim.paddr ); DrawSync(0); @@ -34,4 +34,4 @@ void FntLoad(int x, int y) { LoadImage( &pos, tim.caddr ); DrawSync(0); -} \ No newline at end of file +} -- cgit v1.2.3