diff options
| author | John Wilbert M. Villamor <lameguy64@gmail.com> | 2019-08-17 14:44:29 +0800 |
|---|---|---|
| committer | John Wilbert M. Villamor <lameguy64@gmail.com> | 2019-08-17 14:44:29 +0800 |
| commit | 82a441e7bd3a5103330c7d5ca7f9df470953e586 (patch) | |
| tree | a8a933aa9f03767c6cebc5e11380c37931eae5cd /examples/n00bdemo | |
| parent | e7f9e08937f9d556793c1e0ff0a08856a3897b41 (diff) | |
| download | psn00bsdk-82a441e7bd3a5103330c7d5ca7f9df470953e586.tar.gz | |
Added childexec example, added BIOS memory card functions, changed PAD function names, runtime library now 0.13b
Diffstat (limited to 'examples/n00bdemo')
| -rw-r--r-- | examples/n00bdemo/overlay.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/n00bdemo/overlay.c b/examples/n00bdemo/overlay.c index 9b04274..847bc96 100644 --- a/examples/n00bdemo/overlay.c +++ b/examples/n00bdemo/overlay.c @@ -126,7 +126,7 @@ void sort_overlay(int showlotl) { nextpri = (char*)line; tp = (DR_TPAGE*)nextpri; - setDrawTPageVal( tp, font_tpage ); + setDrawTPage( tp, 0, 1, font_tpage ); addPrim( ot[db], tp ); nextpri += sizeof(DR_TPAGE); @@ -164,7 +164,7 @@ void sort_overlay(int showlotl) { } tp = (DR_TPAGE*)nextpri; - setDrawTPageVal( tp, getTPage( 0, 2, 0, 0 )|0x200 ); + setDrawTPage( tp, 0, 1, getTPage( 0, 2, 0, 0 ) ); addPrim( ot[db], tp ); nextpri += sizeof(DR_TPAGE); @@ -177,7 +177,7 @@ void sort_overlay(int showlotl) { nextpri += sizeof(SPRT); tp = (DR_TPAGE*)nextpri; - setDrawTPageVal( tp, lamelotl_tpage ); + setDrawTPage( tp, 0, 1, lamelotl_tpage ); addPrim( ot[db], tp ); nextpri += sizeof(DR_TPAGE); @@ -190,7 +190,7 @@ void sort_overlay(int showlotl) { nextpri += sizeof(SPRT); tp = (DR_TPAGE*)nextpri; - setDrawTPageVal( tp, psn00b_tpage ); + setDrawTPage( tp, 0, 1, psn00b_tpage ); addPrim( ot[db], tp ); nextpri += sizeof(DR_TPAGE); |
