diff options
author | Einar Johan Trøan Sømåen | 2012-05-11 02:05:13 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 12:56:35 +0200 |
commit | 6faf92bfda160e037163fe4f6e6dd37d740ba809 (patch) | |
tree | a54d7401a80616aa891fe4622b6684a9966f0569 /engines | |
parent | 26226afc5a546fd45362e402fa035880032963fc (diff) | |
download | scummvm-rg350-6faf92bfda160e037163fe4f6e6dd37d740ba809.tar.gz scummvm-rg350-6faf92bfda160e037163fe4f6e6dd37d740ba809.tar.bz2 scummvm-rg350-6faf92bfda160e037163fe4f6e6dd37d740ba809.zip |
WINTERMUTE: Fix a few swtich-related warnings in PlatformSDL.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wintermute/PlatformSDL.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wintermute/PlatformSDL.cpp b/engines/wintermute/PlatformSDL.cpp index 740a0bfa87..2837e16be6 100644 --- a/engines/wintermute/PlatformSDL.cpp +++ b/engines/wintermute/PlatformSDL.cpp @@ -298,6 +298,9 @@ void CBPlatform::HandleEvent(Common::Event *event) { #endif
break;
+ default:
+ // TODO: Do we care about any other events?
+ break;
}
}
|