mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 04:39:45 +00:00
Get rid of NEW(), TRACKED_NEW, and ZERO().
This commit is contained in:
@ -110,9 +110,9 @@ bool plStateDescriptor::Read(hsStream* s)
|
||||
uint8_t SDVar=s->ReadByte();
|
||||
plVarDescriptor* var = nil;
|
||||
if (SDVar)
|
||||
var = TRACKED_NEW plSDVarDescriptor;
|
||||
var = new plSDVarDescriptor;
|
||||
else
|
||||
var = TRACKED_NEW plSimpleVarDescriptor;
|
||||
var = new plSimpleVarDescriptor;
|
||||
if (var->Read(s))
|
||||
fVarsList.push_back(var);
|
||||
else
|
||||
|
Reference in New Issue
Block a user