mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
Fixed: Bad serialization of sound name in background sounds
This commit is contained in:
parent
9eef5919de
commit
5be53b0b11
1 changed files with 1 additions and 11 deletions
|
@ -69,17 +69,7 @@ public:
|
|||
|
||||
void serial(NLMISC::IStream &s)
|
||||
{
|
||||
std::string soundName;
|
||||
if (s.isReading())
|
||||
{
|
||||
s.serial(soundName);
|
||||
SoundName = NLMISC::CSheetId(soundName);/*NLMISC::CStringMapper::map(soundName)*/;
|
||||
}
|
||||
else
|
||||
{
|
||||
soundName = SoundName.toString();/* NLMISC::CStringMapper::unmap(SoundName)*/;
|
||||
s.serial(soundName);
|
||||
}
|
||||
SoundName.serialString(s, "sound");
|
||||
s.serial(Filter);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue