Lua/LuaCoroutine: Fixed movement assignation operator
This commit is contained in:
parent
beed59b94c
commit
0740ee456a
|
|
@ -156,6 +156,7 @@ Nazara Engine:
|
||||||
- ⚠ **Changed the way resources were Loaded, almost every LoadFromX and OpenFromX methods are now static and create the object themselves.**
|
- ⚠ **Changed the way resources were Loaded, almost every LoadFromX and OpenFromX methods are now static and create the object themselves.**
|
||||||
- ⚠ SoundStream is now responsible for loaders instead of Music, and is now threadsafe (you can now load a stream only once and play it multiple times at the same time)
|
- ⚠ SoundStream is now responsible for loaders instead of Music, and is now threadsafe (you can now load a stream only once and play it multiple times at the same time)
|
||||||
- Added LuaState::RawEqual
|
- Added LuaState::RawEqual
|
||||||
|
- Fixed LuaCoroutine movement assignation operator
|
||||||
|
|
||||||
Nazara Development Kit:
|
Nazara Development Kit:
|
||||||
- Added ImageWidget (#139)
|
- Added ImageWidget (#139)
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,7 @@ namespace Nz
|
||||||
{
|
{
|
||||||
LuaState::operator=(std::move(instance));
|
LuaState::operator=(std::move(instance));
|
||||||
|
|
||||||
m_ref = instance.m_ref;
|
std::swap(m_ref, instance.m_ref);
|
||||||
instance.m_ref = -1;
|
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue