mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 23:47:42 +00:00
Various cleanups and minor imps
This commit is contained in:
@@ -3,10 +3,10 @@
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CAnimTreeDoubleChild::CAnimTreeDoubleChild(const std::shared_ptr<CAnimTreeNode>& a,
|
||||
const std::shared_ptr<CAnimTreeNode>& b,
|
||||
CAnimTreeDoubleChild::CAnimTreeDoubleChild(const std::weak_ptr<CAnimTreeNode>& a,
|
||||
const std::weak_ptr<CAnimTreeNode>& b,
|
||||
const std::string& name)
|
||||
: CAnimTreeNode(name), x14_a(a), x18_b(b)
|
||||
: CAnimTreeNode(name), x14_a(a.lock()), x18_b(b.lock())
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user