Added ave and craig

This commit is contained in:
2023-08-01 23:06:47 -07:00
parent 24ab09b451
commit 9fd31edc4a
8 changed files with 75 additions and 8 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() {

View File

@ -15,7 +15,7 @@ namespace Dawn {
protected:
void onStart() override {
assertNotNull(this->modifies);
assertNotNull(this->modifies, "VNSetEvent::onStart() modifies is null!");
*modifies = value;
this->next();
}