Misc: assert -> ASSERT

This commit is contained in:
Treeston
2018-01-25 12:39:19 +01:00
parent 6ce078d8e8
commit 6c3c200cc5
4 changed files with 8 additions and 9 deletions

View File

@@ -119,7 +119,7 @@ DBCFileLoader::~DBCFileLoader()
DBCFileLoader::Record DBCFileLoader::getRecord(size_t id)
{
assert(data);
ASSERT(data);
return Record(*this, data + id * recordSize);
}