[Scummvm-cvs-logs] SF.net SVN: scummvm:[34151] scummvm/branches/branch-0-12-0/common/file.cpp

agent-q at users.sourceforge.net agent-q at users.sourceforge.net
Mon Aug 25 16:01:41 CEST 2008


Revision: 34151
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34151&view=rev
Author:   agent-q
Date:     2008-08-25 14:01:39 +0000 (Mon, 25 Aug 2008)

Log Message:
-----------
DS: Disable multiple retries for case sensitive filesystems on DS port.

Modified Paths:
--------------
    scummvm/branches/branch-0-12-0/common/file.cpp

Modified: scummvm/branches/branch-0-12-0/common/file.cpp
===================================================================
--- scummvm/branches/branch-0-12-0/common/file.cpp	2008-08-25 13:54:28 UTC (rev 34150)
+++ scummvm/branches/branch-0-12-0/common/file.cpp	2008-08-25 14:01:39 UTC (rev 34151)
@@ -167,6 +167,7 @@
 	//
 	file = fopen(pathBuf.c_str(), mode);
 
+#ifndef __DS__
 	//
 	// Try again, with file name converted to upper case
 	//
@@ -194,6 +195,7 @@
 		pathBuf = dirBuf + fileBuf;
 		file = fopen(pathBuf.c_str(), mode);
 	}
+#endif // __DS__
 
 #ifdef __amigaos4__
 	//


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