From eb11be9270955c33a5cb7ab149745ab0d4253108 Mon Sep 17 00:00:00 2001 From: fslongjin Date: Wed, 2 Mar 2022 18:31:41 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=98=8E=E7=A1=AEFB=5Flength=E7=9A=84?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/common/printk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/common/printk.h b/kernel/common/printk.h index 35c7e92e..6be27041 100644 --- a/kernel/common/printk.h +++ b/kernel/common/printk.h @@ -47,7 +47,7 @@ struct screen_info uint *FB_address; //帧缓冲区首地址 - unsigned long FB_length; // 帧缓冲区长度 + unsigned long FB_length; // 帧缓冲区长度(乘以4才是字节数) }; extern unsigned char font_ascii[256][16]; //导出ascii字体的bitmap(8*16大小) ps:位于font.h中