From f02219906887819af7af58bf20272cafffd65b00 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 28 Dec 2025 19:33:53 +0000 Subject: [PATCH] Fix: Remove unused font_8x8 const variable to resolve build error Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- kernel/src/core/console.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/kernel/src/core/console.c b/kernel/src/core/console.c index 0db8a1b..842a4ff 100644 --- a/kernel/src/core/console.c +++ b/kernel/src/core/console.c @@ -5,17 +5,6 @@ #include "kernel/console.h" -// Simple 8x8 bitmap font (ASCII characters 32-126) -// This is a minimal font representation -static const uint8_t font_8x8[96][8] = { - {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // Space - {0x18, 0x3C, 0x3C, 0x18, 0x18, 0x00, 0x18, 0x00}, // ! - {0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // " - {0x36, 0x36, 0x7F, 0x36, 0x7F, 0x36, 0x36, 0x00}, // # - // ... (simplified - would need full 96 characters) - // For now, we'll render simple blocks for all chars -}; - static Console console; void console_init(uint32_t* fb, uint32_t width, uint32_t height, uint32_t pitch) {