Update display buffer handling

This commit is contained in:
EnderIce2
2024-02-10 06:56:26 +02:00
parent 5f80e40885
commit cfd4b8d6a5
15 changed files with 431 additions and 495 deletions

View File

@ -29,7 +29,7 @@ void TreeFS(vfs::Node *node, int Depth)
printf("%*c %s\eFFFFFF\n", Depth, ' ', Chld->Name);
if (!Config.Quiet)
Display->SetBuffer(0);
Display->UpdateBuffer();
TaskManager->Sleep(100);
TreeFS(Chld, Depth + 1);
}