forked from teamnwah/openmw-tes3coop
Added clone() to ManagedSound
This commit is contained in:
parent
6443c16146
commit
e2e5a2138d
1 changed files with 5 additions and 4 deletions
|
@ -104,8 +104,6 @@ public:
|
||||||
if(mgr) lock();
|
if(mgr) lock();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Override stop() and pause()
|
|
||||||
|
|
||||||
// Called regularly by the manager
|
// Called regularly by the manager
|
||||||
void update()
|
void update()
|
||||||
{
|
{
|
||||||
|
@ -117,9 +115,12 @@ public:
|
||||||
// point.
|
// point.
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not implemented yet
|
|
||||||
SoundPtr clone() const
|
SoundPtr clone() const
|
||||||
{ return SoundPtr(); }
|
{
|
||||||
|
// Cloning only works when we have a manager.
|
||||||
|
assert(mgr);
|
||||||
|
return mgr->wrap(client->clone());
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SoundManager::SoundManagerList
|
struct SoundManager::SoundManagerList
|
||||||
|
|
Loading…
Reference in a new issue