diff options
| author | D G Turner | 2019-11-09 17:54:34 +0000 | 
|---|---|---|
| committer | D G Turner | 2019-11-09 17:54:34 +0000 | 
| commit | 3544fe355ab8247101325264d92029e872ddc54c (patch) | |
| tree | c21b3443209c37e6ee43f2fd7fa76ab2b20e9909 /engines/tucker/graphics.cpp | |
| parent | c0ed6eabd4b70e799cd50b1ab2593224d69119f1 (diff) | |
| download | scummvm-rg350-3544fe355ab8247101325264d92029e872ddc54c.tar.gz scummvm-rg350-3544fe355ab8247101325264d92029e872ddc54c.tar.bz2 scummvm-rg350-3544fe355ab8247101325264d92029e872ddc54c.zip | |
TUCKER: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/tucker/graphics.cpp')
| -rw-r--r-- | engines/tucker/graphics.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/engines/tucker/graphics.cpp b/engines/tucker/graphics.cpp index 3a6bd227b4..9ab672c702 100644 --- a/engines/tucker/graphics.cpp +++ b/engines/tucker/graphics.cpp @@ -188,6 +188,7 @@ void Graphics::drawStringChar(uint8 *dst, int xDst, int yDst, int pitch, uint8 c  void Graphics::setCharset(CharsetType type) {  	_charsetType = type;  	switch (type) { +	default:  	case kCharsetTypeDefault:  		_charset._charW = 10;  		_charset._charH = 10; | 
