Added ave and craig
This commit is contained in:
@ -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() {
|
||||
|
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user