Skip to content

Commit 8f6dcf0

Browse files
committed
nit comment fix
1 parent a0eae3b commit 8f6dcf0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

include/barelymusician.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233
#define BARELY_ENUM(EnumType, X) BARELY_C_ENUM(EnumType, X) BARELY_CPP_ENUM(EnumType, X)
234234
#else // __cplusplus
235235
#define BARELY_ENUM(EnumType, X) BARELY_C_ENUM(EnumType, X)
236-
#endif
236+
#endif // __cplusplus
237237

238238
/// Arpeggiator modes.
239239
#define BARELY_ARP_MODES(ArpMode, X) \
@@ -244,13 +244,13 @@
244244
BARELY_ENUM(ArpMode, BARELY_ARP_MODES)
245245

246246
/// Oscillator modes.
247-
#define BARELY_OSC_MODES(OscMode, X) \
248-
X(OscMode, Crossfade, "Linear crossfade between the slice and the oscillator") \
249-
X(OscMode, Am, "Amplitude modulation applied to the slice by the oscillator") \
250-
X(OscMode, Fm, "Frequency modulation applied to the slice by the oscillator") \
251-
X(OscMode, Ma, "Amplitude modulation applied to the oscillator by the slice") \
252-
X(OscMode, Mf, "Frequency modulation applied to the oscillator by the slice") \
253-
X(OscMode, Ring, "Ring modulation")
247+
#define BARELY_OSC_MODES(OscMode, X) \
248+
X(OscMode, Crossfade, "Linear Crossfade (slice <-> oscillator)") \
249+
X(OscMode, Am, "Amplitude Modulation (oscillator -> slice)") \
250+
X(OscMode, Fm, "Frequency Modulation (oscillator -> slice)") \
251+
X(OscMode, Ma, "Amplitude Modulation (slice -> oscillator)") \
252+
X(OscMode, Mf, "Frequency Modulation (slice -> oscillator)") \
253+
X(OscMode, Ring, "Ring Modulation")
254254
BARELY_ENUM(OscMode, BARELY_OSC_MODES)
255255

256256
/// Slice modes.
@@ -308,8 +308,8 @@ BARELY_ENUM(EngineControlType, BARELY_ENGINE_CONTROL_TYPES)
308308
X(InstrumentControlType, OscPitchShift, 0.0f, 0.0f, 0.0f, "Oscillator Pitch Shift") \
309309
X(InstrumentControlType, OscShape, 0.0f, 0.0f, 1.0f, "Oscillator Shape") \
310310
X(InstrumentControlType, OscSkew, 0.0f, -1.0f, 1.0f, "Oscillator Skew") \
311-
X(InstrumentControlType, CrushDepth, 0.0f, 0.0f, 1.0f, "Crush Depth") \
312-
X(InstrumentControlType, CrushRate, 0.0f, 0.0f, 1.0f, "Crush Rate") \
311+
X(InstrumentControlType, CrushDepth, 0.0f, 0.0f, 1.0f, "Bit Crusher Depth") \
312+
X(InstrumentControlType, CrushRate, 0.0f, 0.0f, 1.0f, "Bit Crusher Rate") \
313313
X(InstrumentControlType, DistortionMix, 0.0f, 0.0f, 1.0f, "Distortion Mix") \
314314
X(InstrumentControlType, DistortionDrive, 0.0f, 0.0f, 1.0f, "Distortion Drive") \
315315
X(InstrumentControlType, FilterCutoff, 1.0f, 0.0f, 1.0f, "Filter Cutoff") \

0 commit comments

Comments
 (0)