mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-06 07:18:03 -04:00
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:
parent
9ecdd73ae7
commit
b79118011b
15 changed files with 471 additions and 181 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue