Browse Source

Update to Rack v1 API

tags/v1.0.1
Andrew Belt 6 years ago
parent
commit
09fefa75eb
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/Merge.cpp
  2. +1
    -1
      src/Unity.cpp

+ 1
- 1
src/Merge.cpp View File

@@ -70,7 +70,7 @@ struct Merge : Module {
struct MergeChannelItem : MenuItem {
Merge *module;
int channels;
void onAction(const event::Action &e) override {
void onAction(const ActionEvent &e) override {
module->channels = channels;
}
};


+ 1
- 1
src/Unity.cpp View File

@@ -100,7 +100,7 @@ struct Unity : Module {

struct UnityMergeItem : MenuItem {
Unity *unity;
void onAction(const event::Action &e) override {
void onAction(const ActionEvent &e) override {
unity->merge ^= true;
}
void step() override {


Loading…
Cancel
Save