diff --git a/dependencies/egg-library/src/filesystem.cc b/dependencies/egg-library/src/filesystem.cc index 807a87c..e6e6f70 100644 --- a/dependencies/egg-library/src/filesystem.cc +++ b/dependencies/egg-library/src/filesystem.cc @@ -26,6 +26,7 @@ void set_filesystem_type(Type new_type) bool load_file(const Path& path, std::vector& out_bytes) { std::ifstream file(path.to_full_filepath(), std::ios::binary); + printf("Filesystem::load_file: %s\n", path.to_full_filepath()); if (file.is_open() && file.good()) { // Read the file size @@ -46,6 +47,7 @@ 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) { std::ifstream file(path.to_full_filepath(), std::ios::binary); + printf("Filesystem::load_file: %s\n", path.to_full_filepath()); if (file.is_open() && file.good()) { // Read the file size