Browse Source

Fix build with new dpf

master
falkTX 3 years ago
parent
commit
824e9692cc
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      plugins/PowerJuice/PowerJuicePlugin.hpp
  2. +1
    -1
      plugins/PowerJuiceX2/PowerJuiceX2Plugin.hpp
  3. +1
    -1
      plugins/StutterJuice/StutterJuicePlugin.hpp
  4. +1
    -1
      plugins/TriggerJuice/TriggerJuicePlugin.hpp

+ 1
- 1
plugins/PowerJuice/PowerJuicePlugin.hpp View File

@@ -90,7 +90,7 @@ protected:
return 0x1000;
}
long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('P', 'w', 'r', 'J');
}


+ 1
- 1
plugins/PowerJuiceX2/PowerJuiceX2Plugin.hpp View File

@@ -90,7 +90,7 @@ protected:
return 0x1000;
}
long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('P', 'w', 'J', 'X');
}


+ 1
- 1
plugins/StutterJuice/StutterJuicePlugin.hpp View File

@@ -124,7 +124,7 @@ protected:
return 0x1000;
}
long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('S', 't', 't', 'J');
}


+ 1
- 1
plugins/TriggerJuice/TriggerJuicePlugin.hpp View File

@@ -72,7 +72,7 @@ protected:
return 0x1000;
}
long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('T', 'r', 'g', 'J');
}


Loading…
Cancel
Save