diff options
author | Matthew Hoops | 2015-06-28 20:04:37 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-06-28 20:05:24 -0400 |
commit | a1e2986056218c8c3f48dd4d9e818730265dc060 (patch) | |
tree | 25b034a623ebab9183ec7f86c9ed7c740e2da212 | |
parent | 0ba332493b92e4513c96b78a9f854141db3dcd9c (diff) | |
download | scummvm-rg350-a1e2986056218c8c3f48dd4d9e818730265dc060.tar.gz scummvm-rg350-a1e2986056218c8c3f48dd4d9e818730265dc060.tar.bz2 scummvm-rg350-a1e2986056218c8c3f48dd4d9e818730265dc060.zip |
TINSEL: Silence a gcc warning
-rw-r--r-- | engines/tinsel/music.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/tinsel/music.cpp b/engines/tinsel/music.cpp index 74e28c36d7..80442b230f 100644 --- a/engines/tinsel/music.cpp +++ b/engines/tinsel/music.cpp @@ -401,6 +401,8 @@ MidiMusicPlayer::MidiMusicPlayer(TinselEngine *vm) { musicType = MT_MT32; } break; + default: + break; } if (!_driver) { // nothing got created yet? -> create default driver |