Added ave and craig

This commit is contained in:
2023-08-01 23:06:47 -07:00
parent 440b753d2a
commit 5ea312bc34
83 changed files with 531 additions and 18 deletions

View File

@ -18,7 +18,7 @@ void AssetLoader::open() {
assertNull(this->handle, "AssetLoader::open: File is already open");
std::string pathFull = DAWN_ASSET_BUILD_PREFIX + this->fileName;
this->handle = fopen(pathFull.c_str(), "rb");
assertNotNull(this->handle, "AssetLoader::open: Failed to open file");
assertNotNull(this->handle, "AssetLoader::open: Failed to open file " + pathFull);
}
int32_t AssetLoader::close() {