anti-tear modes for Wiz

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@717 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-07-27 21:24:25 +00:00
parent 9ecdd73ae7
commit b79118011b
15 changed files with 471 additions and 181 deletions

View file

@ -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