Skip to content

Commit

Permalink
Increase default fs size to be able to load images
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryKogan committed Dec 17, 2023
1 parent 2faeb3f commit eb7f6d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added assets/image_sample.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/CLI/CLI.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include "CLI.hpp"

CLI::CLI() {
const uint64_t SIZE = 32768;
const uint64_t CLUSTER_SIZE = 128;
const auto SIZE = static_cast<std::uint64_t>(64 * 1024 * 1024); // 64 MB
const std::uint64_t CLUSTER_SIZE = 256;

FileSystem::make("cli.fs", {SIZE, CLUSTER_SIZE});
file_system_ = FileSystem("cli.fs");
Expand Down

0 comments on commit eb7f6d6

Please sign in to comment.