Handle the float map loop.
This commit is contained in:
@@ -126,9 +126,9 @@ static void WriteGlobalTags( RageFile &f, Song &out )
|
||||
|
||||
f.Write( "#STOPS:" );
|
||||
vector<RString> stopLines;
|
||||
FOREACHM(float, float, allPauses, ap)
|
||||
for (std::pair<float const &, float const &> ap : allPauses)
|
||||
{
|
||||
stopLines.push_back(ssprintf("%.6f=%.6f", ap->first, ap->second));
|
||||
stopLines.push_back(ssprintf("%.6f=%.6f", ap.first, ap.second));
|
||||
}
|
||||
f.PutLine(join(",\n", stopLines));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user