mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
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:
parent
d90f5bd748
commit
cc41eb4fa3
16 changed files with 473 additions and 183 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