aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.