From bf585ff477b90008c132e67d7dfb59755b5523a6 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 17 Feb 2007 13:14:28 +0000 Subject: [PATCH] This isn't calling the base ctor (that has already happened before RoomWheelData's ctor is called), this is creating a new WheelItemBaseData and then throwing it away. --- stepmania/src/RoomWheel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RoomWheel.h b/stepmania/src/RoomWheel.h index 79257f706e..4f5b583036 100644 --- a/stepmania/src/RoomWheel.h +++ b/stepmania/src/RoomWheel.h @@ -9,7 +9,7 @@ struct RoomWheelData : public WheelItemBaseData { - RoomWheelData() : m_iFlags(0) { WheelItemBaseData::WheelItemBaseData(); } + RoomWheelData() : m_iFlags(0) { } RoomWheelData( WheelItemType wit, const RString& sTitle, const RString& sDesc, RageColor color ): WheelItemBaseData( wit, sTitle, color ), m_sDesc(sDesc), m_iFlags(0) { };