Compare commits

..

No commits in common. "a595a774211673b054c169156a82853b8177e296" and "9afff7c54473ac4b95a6b6efe9fbbc39682ff3c7" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -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::printf("%s (%d%%)", message, (100 / total) * current).release_value();
TextConsole::print(message).release_value();
TextConsole::move_to(0, 0);

View File

@ -477,7 +477,6 @@ Result<usize> cstyle_format(const char* format, callback_t callback, void* arg,
if (*format == '%')
{
TRY(format_putchar('%', state));
format++;
continue;
}