1
1

Increase space for item count in loading screen

Fixes #135
Этот коммит содержится в:
Yorhel 2019-08-17 10:35:50 +02:00
родитель 72189c307f
Коммит 62bc78d937

Просмотреть файл

@ -119,10 +119,10 @@ static void draw_progress() {
ncaddstr(2, 2, "Total items: ");
uic_set(UIC_NUM);
printw("%-8d", dir_output.items);
printw("%-9d", dir_output.items);
if(dir_output.size) {
ncaddstrc(UIC_DEFAULT, 2, 23, "size: ");
ncaddstrc(UIC_DEFAULT, 2, 24, "size: ");
printsize(UIC_DEFAULT, dir_output.size);
}