From ed208981d503e35c0e4c793a2c39c4718767e949 Mon Sep 17 00:00:00 2001 From: EPICGameGuy Date: Sun, 17 Dec 2023 12:46:15 -0500 Subject: [PATCH] Trying to fix error with CI build not running --- dependencies/egg-library/src/filesystem.cc | 2 ++ 1 file changed, 2 insertions(+) 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