fixed a dumb error about me hardcoding paths
This commit is contained in:
@@ -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]);
|
||||||
|
|||||||
Reference in New Issue
Block a user