Browse Source

Windows doesn't like uint; Cleanup whitespace

Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX 3 years ago
parent
commit
e4017044a3
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 14 additions and 14 deletions
  1. +14
    -14
      plugins/Cardinal/src/glBars.cpp

+ 14
- 14
plugins/Cardinal/src/glBars.cpp View File

@@ -20,23 +20,23 @@
#define SAMPLES_PER_DRAW 256

struct glBarsModule : Module {
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
IN1_INPUT,
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};
enum ParamIds {
NUM_PARAMS
};
enum InputIds {
IN1_INPUT,
NUM_INPUTS
};
enum OutputIds {
NUM_OUTPUTS
};
enum LightIds {
NUM_LIGHTS
};

glBarsState state;
float audioData[SAMPLES_PER_DRAW];
uint audioDataFill = 0;
unsigned audioDataFill = 0;

glBarsModule() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);


Loading…
Cancel
Save