X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fpandora%2Femu.c;h=d409b57bb8d63d561d2374269190ab64dd8148d2;hb=645ec129e3fd76b303e67049f1c3ffe01ffc8e0e;hp=0425075020d35e44d8dfdc4fddd4da780c673cb8;hpb=a47dd66367c0d6d4ae2957dfd028125636ca9f65;p=picodrive.git diff --git a/platform/pandora/emu.c b/platform/pandora/emu.c index 0425075..d409b57 100644 --- a/platform/pandora/emu.c +++ b/platform/pandora/emu.c @@ -134,7 +134,7 @@ static void osd_text(int x, int y, const char *text) p = (int *) ((unsigned char *) g_screen_ptr+x+g_screen_width*(y+h)); for (i = len; i; i--, p++) *p = 0xe0e0e0e0; } - emu_textOut8(x, y, text); + emu_text_out8(x, y, text); } else { int *p, i, h; x &= ~1; // align x @@ -143,7 +143,7 @@ static void osd_text(int x, int y, const char *text) p = (int *) ((unsigned short *) g_screen_ptr+x+g_screen_width*(y+h)); for (i = len; i; i--, p++) *p = 0;//(*p>>2)&0x39e7; } - textOut16(x, y, text); + text_out16(x, y, text); } }