Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
firthm01 committed Jan 8, 2025
1 parent b0b6043 commit 4ad0ce3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reaper-adm-extension/src/reaper_adm/pluginregistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void admplug::PluginRegistry::repopulateInstalledPlugins(bool warnOnFailure, con
std::string filePath{vstIniPath + fileName};
std::ifstream ifs{filePath};

// Next, parse the fileName... CSV, 3 part; filename + "=" + uid??, uid???, name (e.g, VISR SceneMasterVST (visr) (64ch)) - we might need to do some lazy matching on that... (e.g, end bit probably isn't expected)
// Next, parse the fileName... CSV, 3 part; filename + "=" + uid??, uid???, name (e.g, EAR Object (EBU), EAR Binaural Monitoring (EBU) (128ch)) - we might need to do some lazy matching on that... (e.g, end bit probably isn't expected)
if (ifs) {
fileFound = true;
std::string line;
Expand Down
2 changes: 1 addition & 1 deletion reaper-adm-extension/src/reaper_adm/pluginsuite.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace admplug {

class UniqueValueAssigner {
// This class handles cases where each plugin should be assigned a unique value for a certain parameter
// (see objectId for VISR, or trackMapping for EAR)
// (e.g, trackMapping for EAR)

public:
struct SearchCandidate {
Expand Down

0 comments on commit 4ad0ce3

Please sign in to comment.