diff options
author | Sven Hesse | 2011-01-30 00:01:43 +0000 |
---|---|---|
committer | Sven Hesse | 2011-01-30 00:01:43 +0000 |
commit | d635c7b950448c312434a23f96a428a11d04bff3 (patch) | |
tree | dc1105095bd439bb4fefcaeea1eb2c0a4f236501 /engines | |
parent | 98e329bbd190a687df6b6728e523fd315f24a694 (diff) | |
download | scummvm-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')
-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); |