mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Fixed: Bad serialization of sound name in background sounds
This commit is contained in:
parent
cb1d9a9f73
commit
3fc8a264b5
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