aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/files.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/files.h')
-rw-r--r--engines/xeen/files.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/xeen/files.h b/engines/xeen/files.h
index 4ceadcd753..306ec96657 100644
--- a/engines/xeen/files.h
+++ b/engines/xeen/files.h
@@ -187,9 +187,19 @@ public:
* Checks if a given file exists
*
* @param filename the file to check for
+ * @param ccMode Archive to use
* @return true if the file exists, false otherwise
*/
static bool exists(const Common::String &filename, int ccMode);
+
+ /**
+ * Checks if a given file exists
+ *
+ * @param filename the file to check for
+ * @param archive Archive to use
+ * @return true if the file exists, false otherwise
+ */
+ static bool exists(const Common::String &filename, Common::Archive &archive);
};
/**