diff options
author | D G Turner | 2019-12-06 04:31:04 +0000 |
---|---|---|
committer | D G Turner | 2019-12-06 04:31:04 +0000 |
commit | d77e70a90238424028cce6da27646d40429b8a00 (patch) | |
tree | ec3e64ef92ad756eed7eaa581cd7bfa38cd259a4 /engines/kyra/text | |
parent | e75722665d1f3687a71927670e4e2a4491597a53 (diff) | |
download | scummvm-rg350-d77e70a90238424028cce6da27646d40429b8a00.tar.gz scummvm-rg350-d77e70a90238424028cce6da27646d40429b8a00.tar.bz2 scummvm-rg350-d77e70a90238424028cce6da27646d40429b8a00.zip |
KYRA: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
Diffstat (limited to 'engines/kyra/text')
-rw-r--r-- | engines/kyra/text/text_lok.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/kyra/text/text_lok.cpp b/engines/kyra/text/text_lok.cpp index c45f0410e3..f89bd9a4c2 100644 --- a/engines/kyra/text/text_lok.cpp +++ b/engines/kyra/text/text_lok.cpp @@ -48,6 +48,8 @@ void KyraEngine_LoK::waitForChatToFinish(int vocFile, int16 chatDuration, const case 3: chatDuration = -1; break; + default: + break; } } |