move the stylus display to the bottom screen
This commit is contained in:
parent
fa63c0da88
commit
c3d97b7854
|
@ -195,7 +195,7 @@ void OSDCLASS::update()
|
|||
if (mode!=255)
|
||||
dst+=offset*512;
|
||||
|
||||
for (int i=0; i<256*192; i++)
|
||||
for (int i=0; i<256*192*2; i++)
|
||||
{
|
||||
if(screen[i]&0x8000)
|
||||
T2WriteWord((u8*)dst,(i << 1), screen[i] );
|
||||
|
|
|
@ -698,7 +698,7 @@ void _CDECL_ FCEUI_SaveMovie(const char *fname, std::wstring author, int flag, s
|
|||
memcpy(&cur_input_display,joy,4);*/
|
||||
|
||||
if (ShowInputDisplay && nds.isTouch)
|
||||
osd->addFixed(nds.touchX >> 4, nds.touchY >> 4, "%s %d %d", "X", nds.touchX >> 4, nds.touchY >> 4);
|
||||
osd->addFixed(nds.touchX >> 4, (nds.touchY >> 4) + 192 , "%s %d %d", "X", nds.touchX >> 4, nds.touchY >> 4);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue