mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +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:
@ -133,10 +133,10 @@ void plPageInfo::Read( hsStream *s )
|
||||
if (version >= 5)
|
||||
{
|
||||
fLocation.Read( s );
|
||||
fAge = s->ReadSafeString_TEMP();
|
||||
fAge = s->ReadSafeString();
|
||||
if (version < 6)
|
||||
s->ReadSafeString_TEMP(); // fChapter was never used, and always "District".
|
||||
fPage = s->ReadSafeString_TEMP();
|
||||
s->ReadSafeString(); // fChapter was never used, and always "District".
|
||||
fPage = s->ReadSafeString();
|
||||
|
||||
s->ReadLE( &fMajorVersion );
|
||||
|
||||
|
Reference in New Issue
Block a user