Fixed: Bad serialization of sound name in background sounds
--HG-- branch : sound_dev
This commit is contained in:
parent
fc8e83a0b9
commit
a57881561b
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