MCPcopy Create free account
hub / github.com/HertzDevil/0CC-FamiTracker / SetSpeedSplitPoint

Method SetSpeedSplitPoint

Source/FamiTrackerModule.cpp:162–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162void CFamiTrackerModule::SetSpeedSplitPoint(unsigned splitPoint) {
163 m_iSpeedSplitPoint = splitPoint;
164 VisitSongs([&] (CSongData &song) {
165 song.SetSongTempo(std::max(splitPoint, song.GetSongTempo()));
166 song.SetSongSpeed(std::min(splitPoint - 1, song.GetSongSpeed()));
167 });
168}
169
170std::array<int, 256> CFamiTrackerModule::MakeVibratoTable() const { // // //
171 const double NEW_VIBRATO_DEPTH[] = {

Callers 3

OnBnClickedOkMethod · 0.80
LoadParamsMethod · 0.80
ImportFileMethod · 0.80

Calls 4

SetSongTempoMethod · 0.80
GetSongTempoMethod · 0.80
SetSongSpeedMethod · 0.80
GetSongSpeedMethod · 0.80

Tested by

no test coverage detected