clean up a bit

This commit is contained in:
Gordon JC Pearce 2024-09-03 16:17:32 +01:00
parent 39f0c79484
commit fbdbc998b9
6 changed files with 19 additions and 24 deletions

View File

@ -1,5 +1,5 @@
/*
BarrVerb reverb plugin
Chassis polysynth framework
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
@ -16,7 +16,6 @@
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef DISTRHO_PLUGIN_INFO_H
#define DISTRHO_PLUGIN_INFO_H
@ -30,7 +29,6 @@
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0
enum Parameters {
paramProg,
kParameterCount

View File

@ -1,6 +1,6 @@
###############################
#
# Makefile for BarrChassis
# Makefile for Chassis
# based on the work of falkTX, in the DPF example plugins
#
# for full licence, see LICENCE in the root of the project

View File

@ -1,5 +1,5 @@
/*
Chassis softsynth framework
Chassis polysynth framework
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>

View File

@ -1,5 +1,5 @@
/*
Chassis softsynth framework
Chassis polysynth framework
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>

View File

@ -1,5 +1,5 @@
/*
Chassis softsynth framework
Chassis polysynth framework
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
@ -16,10 +16,9 @@
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <math.h>
#include "voice.hpp"
#include <math.h>
static float blep(float phase, float theta) {
float t;
@ -36,8 +35,6 @@ static float blep(float phase, float theta) {
return 0;
}
bool Voice::isFree() {
return keyState == K_OFF;
}

View File

@ -1,5 +1,5 @@
/*
Chassis softsynth framework
Chassis polysynth framework
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>