changed some code order
Continuous integration / build (push) Has been cancelled

This commit is contained in:
2025-02-22 03:47:54 +00:00
parent 3a232c8023
commit 5b1f04c1da
+1 -1
View File
@@ -8,11 +8,11 @@ unsafe extern "C" fn kmain() -> ! {
// All limine requests must also be referenced in a called function, otherwise they may be // All limine requests must also be referenced in a called function, otherwise they may be
// removed by the linker. // removed by the linker.
println_log!(" [ Initialising ] ");
FoundryOS::boot(); FoundryOS::boot();
let dimensions = lib_ascii::screensize_chars(); let dimensions = lib_ascii::screensize_chars();
let dimensions2 = lib_framebuffer::screensize_px(); let dimensions2 = lib_framebuffer::screensize_px();
println_log!(" [ Initialising ] ");
println!("Dimensions: {}x{} (px)", dimensions2.0, dimensions2.1); println!("Dimensions: {}x{} (px)", dimensions2.0, dimensions2.1);
println!("Dimensions: {}x{} (chars)", dimensions.0, dimensions.1); println!("Dimensions: {}x{} (chars)", dimensions.0, dimensions.1);