fix(comments): correct two misleading impl comments in sampler_core (rescan vs tally; re-dispatch vs recursion)
This commit is contained in:
@@ -516,8 +516,8 @@ private:
|
||||
// one per the documented policy. Always returns a valid index (maxVoices >= 1).
|
||||
std::size_t allocateVoice();
|
||||
|
||||
// Count of active Preserve-engine voices (for the S16 Preserve cap). A cheap running tally
|
||||
// kept in sync at note-on/steal/free rather than rescanned per note.
|
||||
// Count of active Preserve-engine voices (for the S16 Preserve cap). Rescanned per note-on
|
||||
// (cheap: bounded by maxVoices) rather than maintained as a running tally.
|
||||
std::size_t activePreserveVoices() const;
|
||||
|
||||
std::vector<Voice> voices_;
|
||||
|
||||
Reference in New Issue
Block a user