From 2f3f9f6feea7fbf0935c6bf5026626339b0aca32 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 4 Oct 2006 23:41:46 +0000 Subject: [PATCH] fix name not copied --- stepmania/src/XmlFile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/XmlFile.cpp b/stepmania/src/XmlFile.cpp index 99f282329c..96ef0605eb 100644 --- a/stepmania/src/XmlFile.cpp +++ b/stepmania/src/XmlFile.cpp @@ -14,6 +14,7 @@ #include "Foreach.h" XNode::XNode( const XNode &cpy ): + m_sName( cpy.m_sName ), m_Value( cpy.m_Value ) { FOREACH_CONST_Attr( &cpy, pAttr )