Change the copying to moving.

This commit is contained in:
Jason Felds
2011-07-07 16:37:08 -04:00
parent eaa058c521
commit 95a9e71bb1
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ StepMania 5.0 ????????? | 20110???
number of songs installed. Fixes issue 373. [AJ]
* [NotesAllSSC] Add the #CHARTNAME tag to the Steps. #DESCRIPTION is now for
more detailed descriptions, or perhaps some short hand lingo. All files
that used #DESCRIPTION will have their values copied to #CHARTNAME on
that used #DESCRIPTION will have their values moved to #CHARTNAME on
load. [Wolfman2000]
2011/07/06
+4 -2
View File
@@ -465,8 +465,10 @@ bool SSCLoader::LoadFromSimfile( const RString &sPath, Song &out, bool bFromCach
{
pNewNotes->SetChartName(sParams[1]);
}
// TODO: Make this the else clause?
pNewNotes->SetDescription( sParams[1] );
else
{
pNewNotes->SetDescription(sParams[1]);
}
}
else if( sValueName=="DIFFICULTY" )