diff options
author | D G Turner | 2019-11-17 08:20:01 +0000 |
---|---|---|
committer | D G Turner | 2019-11-17 08:20:01 +0000 |
commit | 28287d70b6879ab140b90150d9bc747fbc17510d (patch) | |
tree | 4f833cfda95a2935693d0644e3c6024e0df2f8c6 /audio/mods/infogrames.cpp | |
parent | 3d112e1622f416223e24e631af38960bb1c0e514 (diff) | |
download | scummvm-rg350-28287d70b6879ab140b90150d9bc747fbc17510d.tar.gz scummvm-rg350-28287d70b6879ab140b90150d9bc747fbc17510d.tar.bz2 scummvm-rg350-28287d70b6879ab140b90150d9bc747fbc17510d.zip |
AUDIO: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'audio/mods/infogrames.cpp')
-rw-r--r-- | audio/mods/infogrames.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/mods/infogrames.cpp b/audio/mods/infogrames.cpp index 320261b1b0..2c62c37713 100644 --- a/audio/mods/infogrames.cpp +++ b/audio/mods/infogrames.cpp @@ -346,8 +346,11 @@ void Infogrames::getNextSample(Channel &chn) { break; default: warning("Unknown Infogrames command: %X", cmd); + break; } break; + default: + break; } } else { // 0xxxxxxx - Set period if (cmd != 0) |