diff --git a/RetroFE/Source/Graphics/Component/ScrollingList.cpp b/RetroFE/Source/Graphics/Component/ScrollingList.cpp index c673cb7..dc7f019 100644 --- a/RetroFE/Source/Graphics/Component/ScrollingList.cpp +++ b/RetroFE/Source/Graphics/Component/ScrollingList.cpp @@ -72,7 +72,8 @@ ScrollingList::ScrollingList(Configuration &c, } ScrollingList::ScrollingList(const ScrollingList ©) - : SpriteList(NULL) + : Component(copy) + , SpriteList(NULL) , TweenEnterTime(0) , FirstSpriteIndex(0) , SelectedSpriteListIndex(0) @@ -116,8 +117,6 @@ ScrollingList::ScrollingList(const ScrollingList ©) TweenPoints->push_back(v); } } - - Component::Component(copy); }