From aee09409e8b30dbd8ea10c9190b85037fe8458c9 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sat, 30 Nov 2019 22:08:44 +0000 Subject: IMAGE: Fix Missing Default Switch Cases These are flagged by GCC if -Wswitch-default is enabled. --- image/pict.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'image/pict.cpp') diff --git a/image/pict.cpp b/image/pict.cpp index a82bba034e..e7a65b80e5 100644 --- a/image/pict.cpp +++ b/image/pict.cpp @@ -421,6 +421,8 @@ void PICTDecoder::unpackBitsRect(Common::SeekableReadStream &stream, bool withPa } } break; + default: + break; } delete[] buffer; -- cgit v1.2.3