[Scummvm-cvs-logs] SF.net SVN: scummvm:[34930] scummvm/trunk

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Fri Nov 7 14:50:57 CET 2008


Revision: 34930
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34930&view=rev
Author:   peres001
Date:     2008-11-07 13:50:56 +0000 (Fri, 07 Nov 2008)

Log Message:
-----------
Reverted my earlier commit r34926.

Modified Paths:
--------------
    scummvm/trunk/backends/platform/sdl/sdl.cpp
    scummvm/trunk/common/archive.cpp

Modified: scummvm/trunk/backends/platform/sdl/sdl.cpp
===================================================================
--- scummvm/trunk/backends/platform/sdl/sdl.cpp	2008-11-07 13:48:51 UTC (rev 34929)
+++ scummvm/trunk/backends/platform/sdl/sdl.cpp	2008-11-07 13:50:56 UTC (rev 34930)
@@ -290,7 +290,7 @@
 	// FIXME: We use depth = 4 for now, to match the old code. May want to change that
 	Common::FSNode dataNode(DATA_PATH);
 	if (dataNode.exists() && dataNode.isDirectory()) {
-		s.add(DATA_PATH, new Common::FSDirectory(dataNode, 4), priority, true);
+		s.add(DATA_PATH, new Common::FSDirectory(dataNode, 4), priority);
 	}
 #endif
 
@@ -303,7 +303,7 @@
 		if (CFURLGetFileSystemRepresentation(fileUrl, true, buf, sizeof(buf))) {
 			// Success: Add it to the search path
 			Common::String bundlePath((const char *)buf);
-			s.add("__OSX_BUNDLE__", new Common::FSDirectory(bundlePath), priority, true);
+			s.add("__OSX_BUNDLE__", new Common::FSDirectory(bundlePath), priority);
 		}
 		CFRelease(fileUrl);
 	}

Modified: scummvm/trunk/common/archive.cpp
===================================================================
--- scummvm/trunk/common/archive.cpp	2008-11-07 13:48:51 UTC (rev 34929)
+++ scummvm/trunk/common/archive.cpp	2008-11-07 13:50:56 UTC (rev 34930)
@@ -433,7 +433,7 @@
 	if (!dir.exists() || !dir.isDirectory())
 		return;
 
-	add(name, new FSDirectory(dir, depth), priority, true);
+	add(name, new FSDirectory(dir, depth), priority);
 }
 
 void SearchManager::clear() {


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