diff --git a/kernel/src/main.cpp b/kernel/src/main.cpp index 3a454809..92f11c0a 100644 --- a/kernel/src/main.cpp +++ b/kernel/src/main.cpp @@ -151,7 +151,7 @@ static void update_splash(const char* message, u32 current, u32 total) Framebuffer::rect(line_begin, line_height + 20, line_length, 16, BLACK); TextConsole::move_to(Framebuffer::width() / 2 - 100, line_height + 20); - TextConsole::print(message).release_value(); + TextConsole::printf("%s (%d%%)", message, (100 / total) * current).release_value(); TextConsole::move_to(0, 0);