Small ui tweaks

This commit is contained in:
2024-11-21 23:32:55 -05:00
parent 1cb5f8bc89
commit 28e9124c09
2 changed files with 21 additions and 17 deletions

View File

@@ -62,22 +62,22 @@ typedef struct _tFont
//GB2312
typedef struct // 汉字字模数据结构
{
const char index[2]; // 汉字内码索引
const char matrix[MAX_HEIGHT_FONT*MAX_WIDTH_FONT/8+2]; // 点阵码数据
}CH_CN;
// typedef struct // 汉字字模数据结构
// {
// const char index[2]; // 汉字内码索引
// const char matrix[MAX_HEIGHT_FONT*MAX_WIDTH_FONT/8+2]; // 点阵码数据
// }CH_CN;
typedef struct
{
const CH_CN *table;
uint16_t size;
uint16_t ASCII_Width;
uint16_t Width;
uint16_t Height;
//typedef struct
//{
// const CH_CN *table;
// uint16_t size;
// uint16_t ASCII_Width;
// uint16_t Width;
// uint16_t Height;
}cFONT;
//}cFONT;
extern sFONT Font36;
extern sFONT Font24;