diff options
| author | williamblair <bblair12876@gmail.com> | 2019-06-30 16:42:30 -0400 |
|---|---|---|
| committer | williamblair <bblair12876@gmail.com> | 2019-06-30 16:42:30 -0400 |
| commit | ea51e993bcdb35fd674b42b953eae01c6b7fff75 (patch) | |
| tree | 67292eebc371d319e84b86d99a044614444b0258 | |
| parent | c134ee6435e1a4fb68d04ab67dbecc0d69e539b1 (diff) | |
| download | psn00bsdk-ea51e993bcdb35fd674b42b953eae01c6b7fff75.tar.gz | |
fix FntLoad to non-zero y locations for debug font
| -rw-r--r-- | libpsn00b/psxetc/font.c | 4 |
1 files 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 +} |
