GetById => Get

This commit is contained in:
andrew
2014-03-02 16:24:09 +02:00
parent f40f2ad928
commit 0c87341631
4 changed files with 32 additions and 32 deletions
+3 -3
View File
@@ -29,11 +29,11 @@ cBlockInfo::cBlockInfo()
cBlockInfo & cBlockInfo::GetById(unsigned int a_ID)
cBlockInfo & cBlockInfo::Get(BLOCKTYPE a_Type)
{
ASSERT(a_ID < 256);
ASSERT(a_Type < 256);
return ms_Info[a_ID];
return ms_Info[a_Type];
}