aboutsummaryrefslogtreecommitdiff
path: root/graphics/dxa_player.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/dxa_player.h')
-rw-r--r--graphics/dxa_player.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/dxa_player.h b/graphics/dxa_player.h
index 27f4752d6a..4eec9d93bf 100644
--- a/graphics/dxa_player.h
+++ b/graphics/dxa_player.h
@@ -61,8 +61,6 @@ public:
DXAPlayer();
virtual ~DXAPlayer();
- Common::SeekableReadStream *_fileStream;
-
/**
* Returns the width of the video
* @return the width of the video
@@ -91,7 +89,7 @@ public:
* Load a DXA encoded video file
* @param filename the filename to load
*/
- bool loadFile(const char *filename);
+ bool loadFile(const char *fileName);
/**
* Close a DXA encoded video file
@@ -123,6 +121,8 @@ protected:
void decodeZlib(byte *data, int size, int totalSize);
void decode12(int size);
void decode13(int size);
+
+ Common::SeekableReadStream *_fileStream;
};
} // End of namespace Graphics