解决界面显示异常的问题,解决触屏失效的问题
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user