fix uninitialized

This commit is contained in:
Glenn Maynard
2005-07-19 08:52:36 +00:00
parent 2dd114942b
commit f9e40278dd
+1
View File
@@ -118,6 +118,7 @@ Actor::Actor( const Actor &cpy )
{
/* Don't copy an Actor in the middle of rendering. */
ASSERT( cpy.m_pTempState == NULL );
m_pTempState = NULL;
#define CPY(x) x = cpy.x
CPY( m_sName );