X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fpsp%2Femu.c;h=929c608d287e3bec6915c9d1a4de0ac328dc24f5;hb=cc41eb4fa36c1ebe724efd4c81962cbc9046ac57;hp=21abfca80d78071cc424dfb2f3d4d70e9dc18646;hpb=a47dd66367c0d6d4ae2957dfd028125636ca9f65;p=picodrive.git diff --git a/platform/psp/emu.c b/platform/psp/emu.c index 21abfca..929c608 100644 --- a/platform/psp/emu.c +++ b/platform/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