diff options
author | Filippos Karapetis | 2018-08-25 12:23:01 +0300 |
---|---|---|
committer | Filippos Karapetis | 2018-08-25 12:39:13 +0300 |
commit | 0101ac6f7172682397c3a525c67cd6c23b95d11e (patch) | |
tree | 8de65e8010a5e23e57af60051da6e81fbb92d354 | |
parent | 941869c466354356c7ebf76e5c6fe37fe06785cf (diff) | |
download | scummvm-rg350-0101ac6f7172682397c3a525c67cd6c23b95d11e.tar.gz scummvm-rg350-0101ac6f7172682397c3a525c67cd6c23b95d11e.tar.bz2 scummvm-rg350-0101ac6f7172682397c3a525c67cd6c23b95d11e.zip |
SCI: Add a default case to the switch in toDebugString()
Silences a false positive in MSVC
-rw-r--r-- | engines/sci/engine/segment.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/segment.h b/engines/sci/engine/segment.h index 9a921d633a..8df3653434 100644 --- a/engines/sci/engine/segment.h +++ b/engines/sci/engine/segment.h @@ -884,6 +884,7 @@ public: type = "string"; break; case kArrayTypeInvalid: + default: type = "invalid"; break; } |