From be67c27f58283c9de31e37c3f65fd809b307772b Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Mon, 16 Mar 2026 15:06:14 +0100 Subject: [PATCH] fix makefile to include doom1.wad --- Makefile | 4 ++-- src/userland/gui/markdown.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f941220..c6da6e3 100644 --- a/Makefile +++ b/Makefile @@ -149,9 +149,9 @@ $(ISO_IMAGE): $(KERNEL_ELF) limine.conf limine-setup done @if [ -f README.md ]; then cp README.md $(ISO_DIR)/; fi - @if [ -f $(SRC_DIR)/userland/doom/doom1.wad ]; then \ + @if [ -f $(SRC_DIR)/userland/games/doom/doom1.wad ]; then \ mkdir -p $(ISO_DIR)/Library/DOOM; \ - cp $(SRC_DIR)/userland/doom/doom1.wad $(ISO_DIR)/Library/DOOM/; \ + cp $(SRC_DIR)/userland/games/doom/doom1.wad $(ISO_DIR)/Library/DOOM/; \ echo " module_path: boot():/Library/DOOM/doom1.wad" >> $(ISO_DIR)/limine.conf; \ fi diff --git a/src/userland/gui/markdown.c b/src/userland/gui/markdown.c index 933e530..00d2604 100644 --- a/src/userland/gui/markdown.c +++ b/src/userland/gui/markdown.c @@ -433,7 +433,7 @@ static void md_paint(ui_window_t win) { if (x_offset == start_x && local_display_line == 0) { if (line->type == MD_LINE_LIST) { - ui_draw_rect(win, start_x - 12, current_y + MD_LINE_HEIGHT/2 - 1, 2, 2, COLOR_BLACK); + ui_draw_rect(win, start_x - 12, current_y + MD_LINE_HEIGHT/2 - 1, 2, 2, COLOR_DARK_TEXT); } else if (line->type == MD_LINE_BLOCKQUOTE) { ui_draw_rect(win, start_x - 4, current_y, 2, line_height, 0xFF404080); }