From 31b6d174a0851e7e983448adee6f2d7a32ddf390 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 2 Apr 2007 08:42:23 +0000 Subject: [PATCH] These note skins don't exist any more. Replace with default for now. --- stepmania/src/ScreenEdit.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index c4163de7da..0da2bc9521 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -627,12 +627,13 @@ static void SetDefaultEditorNoteSkin( size_t num, RString &sNameOut, RString &de { sNameOut = ssprintf( "EditorNoteSkinP%d", int(num + 1) ); + // XXX: We need more supported note skins. switch( num ) { - case 0: defaultValueOut = "note"; return; - case 1: defaultValueOut = "solo"; return; + case 0: defaultValueOut = "default"; return; + case 1: defaultValueOut = "default"; return; } - defaultValueOut = "note"; + defaultValueOut = "default"; } static Preference1D EDITOR_NOTE_SKINS( SetDefaultEditorNoteSkin, NUM_PLAYERS );