解决界面显示异常的问题,解决触屏失效的问题

This commit is contained in:
2025-06-30 21:36:12 +08:00
parent 82092d05ab
commit 645f5aab72
4 changed files with 53 additions and 64 deletions

View File

@@ -401,8 +401,9 @@ int WIN_GetWordData(u8 size,u8 type,unsigned char *buff, int word, int buff_size
if (word>0x80)
{
gbk[0]=(word>>8)&0xff;
gbk[1]=word&0xff;
gbk[0]=(word>>16)&0xff;
gbk[1]=(word>>8)&0xff;
gbk[2]=word&0xff;
}
else
{