diff options
| author | Johannes Schickel | 2010-01-08 15:01:31 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2010-01-08 15:01:31 +0000 | 
| commit | 52d264fac1b0c34a3a1192060f66eaabbdc960fe (patch) | |
| tree | 0c7d33c0f162879e915b13c48d75c6db9a57ccf0 | |
| parent | 723ad1bdc13b959b423c0867e4f3441f8e0bc855 (diff) | |
| download | scummvm-rg350-52d264fac1b0c34a3a1192060f66eaabbdc960fe.tar.gz scummvm-rg350-52d264fac1b0c34a3a1192060f66eaabbdc960fe.tar.bz2 scummvm-rg350-52d264fac1b0c34a3a1192060f66eaabbdc960fe.zip | |
Fix unhandled case(s) in switch warning from g++.
svn-id: r47157
| -rw-r--r-- | engines/sci/sound/music.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp index eb960a0dbc..d84360d1fe 100644 --- a/engines/sci/sound/music.cpp +++ b/engines/sci/sound/music.cpp @@ -96,6 +96,8 @@ void SciMusic::init() {  		break;  	//case MD_MT32:  	// TODO +	default: +		error("Unsupported _midiType setup %d", _midiType);  	}  	if (_pMidiDrv) { | 
