[Scummvm-cvs-logs] SF.net SVN: scummvm:[55643] scummvm/trunk/engines/gob/inter_v6.cpp

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Sun Jan 30 01:01:43 CET 2011


Revision: 55643
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55643&view=rev
Author:   drmccoy
Date:     2011-01-30 00:01:43 +0000 (Sun, 30 Jan 2011)

Log Message:
-----------
GOB: Fix Inter_v6::probe16bitMusic()

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter_v6.cpp

Modified: scummvm/trunk/engines/gob/inter_v6.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v6.cpp	2011-01-29 23:05:12 UTC (rev 55642)
+++ scummvm/trunk/engines/gob/inter_v6.cpp	2011-01-30 00:01:43 UTC (rev 55643)
@@ -409,7 +409,7 @@
 }
 
 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);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list