Helper to build path
| 182 | |
| 183 | // Helper to build path |
| 184 | static fl::string stemPath(const char* name) { |
| 185 | fl::string p; |
| 186 | p.append(STEMS_DIR); |
| 187 | p.append(name); |
| 188 | return p; |
| 189 | } |
| 190 | static fl::string mixPath(const char* name) { |
| 191 | fl::string p; |
| 192 | p.append(MIXES_DIR); |
no test coverage detected