Enable calculating GrooveStats hash, and set the hash version appropriately.

This commit is contained in:
Michael Votaw
2025-02-19 17:00:33 -06:00
committed by teejusb
parent 8619fd0b0d
commit e47c7fd9c0
+2 -1
View File
@@ -307,7 +307,7 @@ void Steps::CalculateStepStats( float fMusicLengthSeconds )
this->CalculateRadarValues(fMusicLengthSeconds);
this->CalculateTechCounts();
this->CalculateMeasureInfo();
// this->CalculateGrooveStatsHash();
this->CalculateGrooveStatsHash(false);
}
void Steps::CalculateRadarValues( float fMusicLengthSeconds )
@@ -821,6 +821,7 @@ void Steps::CalculateGrooveStatsHash(bool forceRecalculate)
RString gsKey = BinaryToHex(CryptManager::GetSHA1ForString(smNoteData));
gsKey = gsKey.substr(0, 16);
GrooveStatsHash = gsKey;
GrooveStatsHashVersion = CURRENT_GROOVE_STATS_HASH_VERSION;
}
RString Steps::MinimizedChartString()