fixed a dumb error about me hardcoding paths

This commit is contained in:
2025-02-24 13:07:11 +00:00
parent 8908a6a281
commit 03290e52a3
+2 -2
View File
@@ -3,10 +3,10 @@ use libm::include_font;
pub mod ibm_vga_8x16; pub mod ibm_vga_8x16;
pub static FONT_SPLEEN_8X16: Font = Font(include_font!( pub static FONT_SPLEEN_8X16: Font = Font(include_font!(
"/home/zxq5/Projects/OSDev/FoundryOS/libk/resources/font/spleen-8x16.psf" "./libk/resources/font/spleen-8x16.psf"
)); ));
pub static FONT_CP850_8X16: Font = Font(include_font!( pub static FONT_CP850_8X16: Font = Font(include_font!(
"/home/zxq5/Projects/OSDev/FoundryOS/libk/resources/font/cp850-8x16.psf" "./libk/resources/font/cp850-8x16.psf"
)); ));
pub struct Font(pub [[u8; 16]; 512]); pub struct Font(pub [[u8; 16]; 512]);