aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/text.h')
-rw-r--r--engines/hugo/text.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hugo/text.h b/engines/hugo/text.h
index 70a77fbe23..cf728f6ad4 100644
--- a/engines/hugo/text.h
+++ b/engines/hugo/text.h
@@ -45,7 +45,7 @@ public:
char **getNounArray(int idx1) { return _arrayNouns[idx1]; }
char **getVerbArray(int idx1) { return _arrayVerbs[idx1]; }
- void loadAllTexts(Common::File &in);
+ void loadAllTexts(Common::ReadStream &in);
void freeAllTexts();
private:
@@ -63,9 +63,9 @@ private:
char **_textParser;
char **_textUtil;
- char ***loadTextsArray(Common::File &in);
- char **loadTextsVariante(Common::File &in, uint16 *arraySize);
- char **loadTexts(Common::File &in);
+ char ***loadTextsArray(Common::ReadStream &in);
+ char **loadTextsVariante(Common::ReadStream &in, uint16 *arraySize);
+ char **loadTexts(Common::ReadStream &in);
void freeTexts(char **ptr);