mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +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:
@ -2989,7 +2989,7 @@ void plPythonFileMod::Read(hsStream* stream, hsResMgr* mgr)
|
||||
plMultiModifier::Read(stream, mgr);
|
||||
|
||||
// read in the compile python code (pyc)
|
||||
fPythonFile = stream->ReadSafeString_TEMP();
|
||||
fPythonFile = stream->ReadSafeString();
|
||||
|
||||
// then read in the list of receivers that want to be notified
|
||||
int nRcvs = stream->ReadLE32();
|
||||
|
@ -148,7 +148,7 @@ bool plPythonPack::Open()
|
||||
for (int i = 0; i < numFiles; i++)
|
||||
{
|
||||
// and pack the index into our own data structure
|
||||
plString pythonName = fPackStream->ReadSafeString_TEMP();
|
||||
plString pythonName = fPackStream->ReadSafeString();
|
||||
uint32_t offset = fPackStream->ReadLE32();
|
||||
|
||||
plPackOffsetInfo offsetInfo;
|
||||
|
Reference in New Issue
Block a user