fix(comments): correct two misleading impl comments in sampler_core (rescan vs tally; re-dispatch vs recursion)

This commit is contained in:
2026-07-27 00:02:57 -04:00
parent 1e1d6bddbb
commit 5dcd5d0d9d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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_;