X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=psp%2Femu.c;fp=psp%2Femu.c;h=929c608d287e3bec6915c9d1a4de0ac328dc24f5;hb=b79118011b8b1ac835efed1ac5a9ce3bdc55c158;hp=21abfca80d78071cc424dfb2f3d4d70e9dc18646;hpb=9ecdd73ae7f2666068d5bd8d6c2abde3040aa998;p=libpicofe.git diff --git a/psp/emu.c b/psp/emu.c index 21abfca..929c608 100644 --- a/psp/emu.c +++ b/psp/emu.c @@ -76,7 +76,7 @@ static void osd_text(int x, const char *text, int is_active, int clear_all) memset32_uncached(p, 0, len); } if (is_active) { tmp = psp_screen; psp_screen = screen; } // nasty pointer tricks - emu_textOut16(x, 264, text); + emu_text_out16(x, 264, text); if (is_active) psp_screen = tmp; } @@ -409,7 +409,7 @@ static void dbg_text(void) p = (int *) ((int)p & ~3); // align memset32_uncached(p, 0, len); } - emu_textOut16(2, 256, text); + emu_text_out16(2, 256, text); } #endif