Skip to content

Commit

Permalink
Fix function declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
rhargreaves committed Jul 17, 2024
1 parent bb6c335 commit 8b44e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/synth.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static const u8 VOLUME_TO_TOTAL_LEVELS[] = { 127, 122, 117, 113, 108, 104, 100,
static void updateChannel(u8 chan);
static void writeGlobalLfo(void);
static void writeAlgorithmAndFeedback(u8 channel);
static void writeOperatorMultipleAndDetune(u8 channel, u8 op);
static void writeOperatorMultipleAndDetune(u8 channel, u8 operator);
static void writeOperatorRateScalingAndAttackRate(u8 channel, u8 operator);
static void writeOperatorAmplitudeModulationAndFirstDecayRate(u8 channel, u8 operator);
static void writeOperatorReleaseRateAndSecondaryAmplitude(u8 channel, u8 operator);
Expand All @@ -39,7 +39,7 @@ static void writeSpecialModeReg(void);
static u8 keyOnOffRegOffset(u8 channel);
static Operator* getOperator(u8 channel, u8 operator);
static u8 effectiveTotalLevel(u8 channel, u8 operator, u8 totalLevel);
static bool isOutputOperator(u8 algorithm, u8 operator);
static bool isOutputOperator(u8 algorithm, u8 op);
static u8 volumeAdjustedTotalLevel(u8 channel, u8 totalLevel);
static void channelParameterUpdated(u8 channel);
static void otherParameterUpdated(u8 channel, ParameterUpdated parameterUpdated);
Expand Down

0 comments on commit 8b44e03

Please sign in to comment.