aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2011-01-30 00:01:43 +0000
committerSven Hesse2011-01-30 00:01:43 +0000
commitd635c7b950448c312434a23f96a428a11d04bff3 (patch)
treedc1105095bd439bb4fefcaeea1eb2c0a4f236501 /engines/gob/inter_v6.cpp
parent98e329bbd190a687df6b6728e523fd315f24a694 (diff)
downloadscummvm-rg350-d635c7b950448c312434a23f96a428a11d04bff3.tar.gz
scummvm-rg350-d635c7b950448c312434a23f96a428a11d04bff3.tar.bz2
scummvm-rg350-d635c7b950448c312434a23f96a428a11d04bff3.zip
GOB: Fix Inter_v6::probe16bitMusic()
svn-id: r55643
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp2
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 &params) {
}
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);