Skip to content

Commit 2d53f58

Browse files
committed
Allow Couple Stepstype to load from SM files as Doubles
these will show up as edit diffs. this is a good enough solution for now, which should fix the problems with dead timingdata when couple is ignored (dont ask why that happens)
1 parent 3e802bf commit 2d53f58

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Etterna/Models/NoteLoaders/NotesLoaderSM.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,12 @@ SMLoader::LoadFromTokens(RString sStepsType,
345345
if (sStepsType == "para" || sStepsType == "para-single")
346346
sStepsType = "pump-single";
347347

348+
// what could go wrong with doing this? (a lot of things)
349+
// we removed couple but those charts probably work better as 8k charts
350+
// chartkey resolving for loading notedata should make this work
351+
if (sStepsType == "dance-couple")
352+
sStepsType = "dance-double";
353+
348354
out.m_StepsType = GAMEMAN->StringToStepsType(sStepsType);
349355
out.m_StepsTypeStr = sStepsType;
350356
out.SetDescription(sDescription);

0 commit comments

Comments
 (0)