diff options
-rw-r--r-- | engines/gob/inter_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp index 6f2605468c..06a06f4fb6 100644 --- a/engines/gob/inter_v6.cpp +++ b/engines/gob/inter_v6.cpp @@ -409,7 +409,7 @@ void Inter_v6::o6_fillRect(OpFuncParams ¶ms) { } void Inter_v6::probe16bitMusic(Common::String &fileName) { - if (!fileName[fileName.size() - 1] != '8') + if (fileName[fileName.size() - 1] != '8') return; fileName.setChar('V', fileName.size() - 1); |