diff options
author | Dzmitry Sankouski | 2023-03-07 13:21:13 +0300 |
---|---|---|
committer | Anatolij Gustschin | 2023-03-07 13:26:08 +0100 |
commit | 0e177d5a95c020c6d7a0d4294de5c7f34f5bf664 (patch) | |
tree | 6f56930c3743c8f2101dd1e03db59e8be42ccbd6 /include/video_font.h | |
parent | 02db4ec9027889ee1c0933740c6766a4b6e14b98 (diff) |
video console: move 8x16 font data in named header
Consistent font data header names needed to add new
fonts.
Signed-off-by: Dzmitry Sankouski <dsankouski@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/video_font.h')
-rw-r--r-- | include/video_font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/video_font.h b/include/video_font.h index 5e23f70f859..b07c07662cb 100644 --- a/include/video_font.h +++ b/include/video_font.h @@ -10,7 +10,7 @@ #ifdef CONFIG_VIDEO_FONT_4X6 #include <video_font_4x6.h> #else -#include <video_font_data.h> +#include <video_font_8x16.h> #endif #endif /* _VIDEO_FONT_ */ |