Fix Sprite & GraphicsComponent copy constructors leaving some members uninitialized (#166)

* Fix Sprite copy constructor (corner colors)

* Also add change to changelog

* [GraphicsComponent] Bugfix: Initialize m_scissorRect in copy ctor

* Add change to changelog

* Move GraphicsComponent fix change to correct section in Changelog

* Use default copy constructor for Sprite
This commit is contained in:
S6066
2018-06-17 18:54:02 +02:00
committed by Jérôme Leclercq
parent 8cdc36c948
commit 858d0da5f2
4 changed files with 4 additions and 16 deletions

View File

@@ -29,7 +29,7 @@ namespace Nz
inline Sprite();
inline Sprite(MaterialRef material);
inline Sprite(Texture* texture);
inline Sprite(const Sprite& sprite);
Sprite(const Sprite&) = default;
Sprite(Sprite&&) = delete;
~Sprite() = default;