aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/text.h
diff options
context:
space:
mode:
authorArnaud Boutonné2011-02-12 16:20:57 +0000
committerArnaud Boutonné2011-02-12 16:20:57 +0000
commitc846231af3ccf9a910c5cfd5276a38a2244e325d (patch)
tree9b8cdcaaae28fda4b0c0783ea0c53ae987324ca5 /engines/hugo/text.h
parent4ad7f20b77cd7239d43f1b2c61ea424d0d826ffa (diff)
downloadscummvm-rg350-c846231af3ccf9a910c5cfd5276a38a2244e325d.tar.gz
scummvm-rg350-c846231af3ccf9a910c5cfd5276a38a2244e325d.tar.bz2
scummvm-rg350-c846231af3ccf9a910c5cfd5276a38a2244e325d.zip
HUGO: Replace Common::File by Common::ReadStream in several functions
svn-id: r55897
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);