X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=psp%2Femu.c;h=929c608d287e3bec6915c9d1a4de0ac328dc24f5;hb=053bef765a5dba9d5a050c0944676e96412e293d;hp=21abfca80d78071cc424dfb2f3d4d70e9dc18646;hpb=ee0f881e9f135db6ed9337b99f611b3cae955f8c;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