diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index d6393dd2f7..12f2ef9922 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -693,7 +693,6 @@ void ScreenEdit::Init() FOREACH_PlayerNumber( pn ) { - m_sOldNoteSkins[pn] = GAMESTATE->m_pPlayerState[pn]->m_PlayerOptions.GetStage().m_sNoteSkin; const RString &sNoteSkin = EDITOR_NOTE_SKINS[pn]; if( NOTESKIN->DoesNoteSkinExist(sNoteSkin) ) @@ -774,8 +773,6 @@ void ScreenEdit::Init() ScreenEdit::~ScreenEdit() { - FOREACH_PlayerNumber( pn ) - PO_GROUP_ASSIGN( GAMESTATE->m_pPlayerState[pn]->m_PlayerOptions, ModsLevel_Stage, m_sNoteSkin, m_sOldNoteSkins[pn] ); // UGLY: Don't delete the Song's steps. m_songLastSave.DetachSteps(); diff --git a/stepmania/src/ScreenEdit.h b/stepmania/src/ScreenEdit.h index 96e5a88a00..2df990b89a 100644 --- a/stepmania/src/ScreenEdit.h +++ b/stepmania/src/ScreenEdit.h @@ -214,7 +214,6 @@ protected: NoteField m_NoteFieldEdit; NoteData m_NoteDataEdit; SnapDisplay m_SnapDisplay; - RString m_sOldNoteSkins[NUM_PLAYERS]; BitmapText m_textInputTips;