anti-tear modes for Wiz

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@717 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-07-27 21:24:25 +00:00
parent d90f5bd748
commit cc41eb4fa3
16 changed files with 473 additions and 183 deletions

View file

@ -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);
}
}