stylus display improvment

This commit is contained in:
p989 2009-05-06 05:05:23 +00:00
parent 2049feff70
commit 745c47fe6e
1 changed files with 5 additions and 1 deletions

View File

@ -523,7 +523,7 @@ static void openRecordingMovie(const char* fname)
MMU.ARM7_REG[0x136] |= 0x40;
}
osd->addFixed(mr->touch.x, mr->touch.y, "%s", "X");
// osd->addFixed(mr->touch.x, mr->touch.y, "%s %d %d", "X", mr->touch.x, mr->touch.y);
}
}
@ -599,6 +599,10 @@ static void openRecordingMovie(const char* fname)
/*extern uint8 joy[4];
memcpy(&cur_input_display,joy,4);*/
if(nds.isTouch)
osd->addFixed(nds.touchX >> 4, nds.touchY >> 4, "%s %d %d", "X", nds.touchX >> 4, nds.touchY >> 4);
}