1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 22:15:32 +00:00

Copy constructor signature fix

This commit is contained in:
scrawl 2015-06-08 01:59:42 +02:00
parent d9a00288f8
commit 347c9b57b8
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ ParticleShooter::ParticleShooter()
{ {
} }
ParticleShooter::ParticleShooter(const osgParticle::Shooter &copy, const osg::CopyOp &copyop) ParticleShooter::ParticleShooter(const ParticleShooter &copy, const osg::CopyOp &copyop)
: osgParticle::Shooter(copy, copyop) : osgParticle::Shooter(copy, copyop)
{ {
*this = copy; *this = copy;

View file

@ -76,7 +76,7 @@ namespace NifOsg
ParticleShooter(float minSpeed, float maxSpeed, float horizontalDir, float horizontalAngle, float verticalDir, float verticalAngle, ParticleShooter(float minSpeed, float maxSpeed, float horizontalDir, float horizontalAngle, float verticalDir, float verticalAngle,
float lifetime, float lifetimeRandom); float lifetime, float lifetimeRandom);
ParticleShooter(); ParticleShooter();
ParticleShooter(const Shooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY); ParticleShooter(const ParticleShooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
META_Object(NifOsg, ParticleShooter) META_Object(NifOsg, ParticleShooter)