aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2010-06-15 12:20:24 +0000
committerMax Horn2010-06-15 12:20:24 +0000
commit96f1e293009a7fe1291ed0f7c1255f9010b75098 (patch)
treece3ab03e7ea4c50ebc4715b45a1babb4440f0567
parent79c9be5d96ca58a20afa61b4b26e28839dfb925e (diff)
downloadscummvm-rg350-96f1e293009a7fe1291ed0f7c1255f9010b75098.tar.gz
scummvm-rg350-96f1e293009a7fe1291ed0f7c1255f9010b75098.tar.bz2
scummvm-rg350-96f1e293009a7fe1291ed0f7c1255f9010b75098.zip
cleanup
svn-id: r49837
-rw-r--r--engines/sci/resource.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/engines/sci/resource.h b/engines/sci/resource.h
index 0fd256633f..4b391cf6cd 100644
--- a/engines/sci/resource.h
+++ b/engines/sci/resource.h
@@ -365,7 +365,7 @@ protected:
/**
* Add an external (i.e., separate file) map resource to the resource
* manager's list of sources.
- * @param file_name The name of the volume to add
+ * @param filename The name of the volume to add
* @param volume_nr The volume number the map starts at, 0 for <SCI2.1
* @return A pointer to the added source structure, or NULL if an error occurred.
*/
@@ -374,14 +374,6 @@ protected:
ResourceSource *addExternalMap(const Common::FSNode *mapFile, int volume_nr = 0);
/**
- * Add an internal (i.e., resource) map to the resource manager's list of sources.
- * @param name The name of the resource to add
- * @param resNr The map resource number
- * @return A pointer to the added source structure, or NULL if an error occurred.
- */
- ResourceSource *addInternalMap(const Common::String &name, int resNr);
-
- /**
* Scans newly registered resource sources for resources, earliest addition first.
* @param detected_version Pointer to the detected version number,
* used during startup. May be NULL.