diff options
author | richiesams | 2013-08-05 11:56:32 -0500 |
---|---|---|
committer | richiesams | 2013-08-05 11:56:32 -0500 |
commit | 4806a3726b02d2e8d00db00f752d3b8818c49206 (patch) | |
tree | 5bf9fcb129077617f3953d3986e14bd7284e0a4c /engines | |
parent | 76d4fb569d2d158ca05b3fb09095efc35ed27a12 (diff) | |
download | scummvm-rg350-4806a3726b02d2e8d00db00f752d3b8818c49206.tar.gz scummvm-rg350-4806a3726b02d2e8d00db00f752d3b8818c49206.tar.bz2 scummvm-rg350-4806a3726b02d2e8d00db00f752d3b8818c49206.zip |
ZVISION: Add default case statements for event handling in videos
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/video.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/zvision/video.cpp b/engines/zvision/video.cpp index c476cf2d83..f27c3faab8 100644 --- a/engines/zvision/video.cpp +++ b/engines/zvision/video.cpp @@ -111,7 +111,11 @@ void ZVision::playVideo(Video::VideoDecoder &videoDecoder) { case Common::KEYCODE_SPACE: videoDecoder.stop(); break; + default: + break; } + default: + break; } } |