diff options
| author | John Wilbert Villamor <lameguy64@gmail.com> | 2019-07-01 10:46:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-01 10:46:15 +0800 |
| commit | b956c5391b955e793a4d54572aa58872b4c66c30 (patch) | |
| tree | 67292eebc371d319e84b86d99a044614444b0258 | |
| parent | c134ee6435e1a4fb68d04ab67dbecc0d69e539b1 (diff) | |
| parent | ea51e993bcdb35fd674b42b953eae01c6b7fff75 (diff) | |
| download | psn00bsdk-b956c5391b955e793a4d54572aa58872b4c66c30.tar.gz | |
Merge pull request #8 from williamblair/fntsort_fix
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 +} |
