aboutsummaryrefslogtreecommitdiff
path: root/graphics/dxa_player.h
diff options
context:
space:
mode:
authorTravis Howell2008-12-15 13:10:08 +0000
committerTravis Howell2008-12-15 13:10:08 +0000
commitb4e542e37f6505cbaa1910563a36725328396767 (patch)
tree147b699b7e11a3a49eaf882adf7244fa0694f068 /graphics/dxa_player.h
parent319795565e482012f56aa5fad5b9f6d35835ecb5 (diff)
downloadscummvm-rg350-b4e542e37f6505cbaa1910563a36725328396767.tar.gz
scummvm-rg350-b4e542e37f6505cbaa1910563a36725328396767.tar.bz2
scummvm-rg350-b4e542e37f6505cbaa1910563a36725328396767.zip
Mirror last Smacker changes.
svn-id: r35383
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