mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 17:59:02 +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)
|
void serial(NLMISC::IStream &s)
|
||||||
{
|
{
|
||||||
std::string soundName;
|
SoundName.serialString(s, "sound");
|
||||||
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);
|
|
||||||
}
|
|
||||||
s.serial(Filter);
|
s.serial(Filter);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue