diff --git a/dependencies/egg-library/src/filesystem.cc b/dependencies/egg-library/src/filesystem.cc index aa7df27..0312fb5 100644 --- a/dependencies/egg-library/src/filesystem.cc +++ b/dependencies/egg-library/src/filesystem.cc @@ -26,8 +26,8 @@ void set_filesystem_type(Type new_type) bool load_file(const Path& path, std::vector& out_bytes) { const char* filepath = path.to_full_filepath(); - std::ifstream file(filepath, std::ios::binary); printf("Filesystem::load_file: %s\n", filepath); + std::ifstream file(filepath, std::ios::binary); if (file.is_open() && file.good()) { // Read the file size @@ -48,8 +48,8 @@ bool load_file(const Path& path, std::vector& out_bytes) bool load_file(const Path& path, std::unique_ptr& out_bytes, size_t& size, size_t alignment) { const char* filepath = path.to_full_filepath(); - std::ifstream file(filepath, std::ios::binary); printf("Filesystem::load_file: %s\n", filepath); + std::ifstream file(filepath, std::ios::binary); if (file.is_open() && file.good()) { // Read the file size