Skip to content

Commit

Permalink
Fix build with new dpf
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Jul 19, 2021
1 parent 23a114b commit 824e969
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/PowerJuice/PowerJuicePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class PowerJuicePlugin : public Plugin
return 0x1000;
}

long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('P', 'w', 'r', 'J');
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/PowerJuiceX2/PowerJuiceX2Plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class PowerJuiceX2Plugin : public Plugin
return 0x1000;
}

long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('P', 'w', 'J', 'X');
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/StutterJuice/StutterJuicePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class StutterJuicePlugin : public Plugin
return 0x1000;
}

long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('S', 't', 't', 'J');
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/TriggerJuice/TriggerJuicePlugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class TriggerJuicePlugin : public Plugin
return 0x1000;
}

long getUniqueId() const noexcept override
int64_t getUniqueId() const noexcept override
{
return d_cconst('T', 'r', 'g', 'J');
}
Expand Down

0 comments on commit 824e969

Please sign in to comment.