diff options
author | Torbjörn Andersson | 2017-08-06 16:54:38 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2017-08-06 16:54:38 +0200 |
commit | 665f5c99b2ca3db67f75ecfa683389e213d942a6 (patch) | |
tree | 4d519f502a58eb8ac3cf1c73beed10396bbaccdf /audio/mods | |
parent | a57c5b385decbd4c1bf15f2eace01bf7cb33f246 (diff) | |
download | scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.tar.gz scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.tar.bz2 scummvm-rg350-665f5c99b2ca3db67f75ecfa683389e213d942a6.zip |
JANITORIAL: Silence some more GCC 7 fall through warnings
I think these are the last one that were already flagged as being
deliberate.
Diffstat (limited to 'audio/mods')
-rw-r--r-- | audio/mods/tfmx.cpp | 6 |
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; |