From c846231af3ccf9a910c5cfd5276a38a2244e325d Mon Sep 17 00:00:00 2001 From: Arnaud Boutonné Date: Sat, 12 Feb 2011 16:20:57 +0000 Subject: HUGO: Replace Common::File by Common::ReadStream in several functions svn-id: r55897 --- engines/hugo/text.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/hugo/text.h') 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); -- cgit v1.2.3