diff options
Diffstat (limited to 'engines/scumm/gfx.cpp')
-rw-r--r-- | engines/scumm/gfx.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp index 3fb93afcd5..5366691051 100644 --- a/engines/scumm/gfx.cpp +++ b/engines/scumm/gfx.cpp @@ -3644,6 +3644,9 @@ void Gdi::unkDecode9(byte *dst, int dstPitch, const byte *src, int height) const case 2: READ_N_BITS(4, run); break; + + default: + break; } } } @@ -3705,6 +3708,9 @@ void Gdi::unkDecode11(byte *dst, int dstPitch, const byte *src, int height) cons inc = 1; READ_N_BITS(8, color); break; + + default: + break; } } while (--h); dst -= _vertStripNextInc; @@ -4145,6 +4151,8 @@ void ScummEngine::scrollEffect(int dir) { x += step; } break; + default: + break; } } |