mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Convert ReadSafe(W)String* to the plString variants, and remove the now
unneeded _TEMP variants. All safe strings read from hsStreams are now plStringified :)
This commit is contained in:
@ -96,7 +96,7 @@ plString plBaseStage::GetName()
|
||||
void plBaseStage::Read(hsStream *stream)
|
||||
{
|
||||
stream->ReadLE16();
|
||||
fName = stream->ReadSafeString_TEMP();
|
||||
fName = stream->ReadSafeString();
|
||||
}
|
||||
|
||||
void plBaseStage::Write(hsStream *stream)
|
||||
@ -137,7 +137,7 @@ void plStandardStage::Read(hsStream *stream)
|
||||
|
||||
uint16_t version = stream->ReadLE16();
|
||||
|
||||
fAnimName = stream->ReadSafeString_TEMP();
|
||||
fAnimName = stream->ReadSafeString();
|
||||
fNumLoops = stream->ReadLE32();
|
||||
fLoopForever = stream->ReadBool();
|
||||
fForward = stream->ReadByte();
|
||||
|
Reference in New Issue
Block a user