aboutsummaryrefslogtreecommitdiff
path: root/audio/mods/tfmx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio/mods/tfmx.cpp')
-rw-r--r--audio/mods/tfmx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/mods/tfmx.cpp b/audio/mods/tfmx.cpp
index db3dad88ef..8d31faa104 100644
--- a/audio/mods/tfmx.cpp
+++ b/audio/mods/tfmx.cpp
@@ -230,7 +230,7 @@ void Tfmx::macroRun(ChannelContext &channel) {
switch (macroPtr[0]) {
case 0x00: // Reset + DMA Off. Parameters: deferWait, addset, vol
clearEffects(channel);
- // FT
+ // fall through
case 0x13: // DMA Off. Parameters: deferWait, addset, vol
// TODO: implement PArameters
Paula::disableChannel(channel.paulaChannel);
@@ -285,7 +285,7 @@ void Tfmx::macroRun(ChannelContext &channel) {
case 0x10: // Loop Key Up. Parameters: Loopcount, MacroStep(W)
if (channel.keyUp)
continue;
- // FT
+ // fall through
case 0x05: // Loop. Parameters: Loopcount, MacroStep(W)
if (channel.macroLoopCount != 0) {
if (channel.macroLoopCount == 0xFF)
@@ -554,7 +554,7 @@ bool Tfmx::patternRun(PatternContext &pattern) {
case 14: // Stop custompattern
// TODO apparently toggles on/off pattern channel 7
debug(3, "Tfmx: Encountered 'Stop custompattern' command");
- // FT
+ // fall through
case 4: // Stop this pattern
pattern.command = 0xFF;
--pattern.step;