forked from LowLevelDevs/FoundryOS
changed some code order
This commit is contained in:
+1
-1
@@ -8,11 +8,11 @@ unsafe extern "C" fn kmain() -> ! {
|
||||
// All limine requests must also be referenced in a called function, otherwise they may be
|
||||
// removed by the linker.
|
||||
|
||||
println_log!(" [ Initialising ] ");
|
||||
FoundryOS::boot();
|
||||
|
||||
let dimensions = lib_ascii::screensize_chars();
|
||||
let dimensions2 = lib_framebuffer::screensize_px();
|
||||
println_log!(" [ Initialising ] ");
|
||||
|
||||
println!("Dimensions: {}x{} (px)", dimensions2.0, dimensions2.1);
|
||||
println!("Dimensions: {}x{} (chars)", dimensions.0, dimensions.1);
|
||||
|
||||
Reference in New Issue
Block a user