mirror of https://github.com/axmolengine/axmol.git
Merge pull request #16107 from cezheng/fix/EaseExponentialOut_clone_crash
fix crash in EaseExponentialOut::clone()
This commit is contained in:
commit
c5c846f6e1
|
@ -293,7 +293,7 @@ EaseExponentialOut* EaseExponentialOut::clone() const
|
|||
{
|
||||
// no copy constructor
|
||||
if (_inner)
|
||||
EaseExponentialOut::create(_inner->clone());
|
||||
return EaseExponentialOut::create(_inner->clone());
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue