Merge pull request #4119 from huffman/fix-overlay-copy-ctor

Add missing paramaters to Base3DOverlay copy ctor
This commit is contained in:
Brad Hefta-Gaub 2015-01-15 14:56:07 -08:00
commit 5663b734a3

View file

@ -41,7 +41,9 @@ Base3DOverlay::Base3DOverlay(const Base3DOverlay* base3DOverlay) :
_rotation(base3DOverlay->_rotation),
_isSolid(base3DOverlay->_isSolid),
_isDashedLine(base3DOverlay->_isDashedLine),
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection)
_ignoreRayIntersection(base3DOverlay->_ignoreRayIntersection),
_drawInFront(base3DOverlay->_drawInFront),
_drawOnHUD(base3DOverlay->_drawOnHUD)
{
}