Fixed: Use NELID16 macros
This commit is contained in:
parent
896262659c
commit
dc2c80d25c
1 changed files with 2 additions and 2 deletions
|
@ -372,7 +372,7 @@ uint16 CSingleLayerCell::_MaskMap[16];
|
||||||
|
|
||||||
void CSingleLayerCell::serial(NLMISC::IStream& f)
|
void CSingleLayerCell::serial(NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint16)'SL');
|
f.serialCheck(NELID16("SL"));
|
||||||
|
|
||||||
uint i;
|
uint i;
|
||||||
for (i=0; i<16; ++i)
|
for (i=0; i<16; ++i)
|
||||||
|
@ -403,7 +403,7 @@ void CSingleLayerCell::serial(NLMISC::IStream& f)
|
||||||
|
|
||||||
void CMultiLayerCell::serial(NLMISC::IStream& f)
|
void CMultiLayerCell::serial(NLMISC::IStream& f)
|
||||||
{
|
{
|
||||||
f.serialCheck((uint16)'ML');
|
f.serialCheck(NELID16("ML"));
|
||||||
|
|
||||||
uint slot;
|
uint slot;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue