aboutsummaryrefslogtreecommitdiff
path: root/engines/draci
diff options
context:
space:
mode:
authorDenis Kasak2009-08-02 05:11:15 +0000
committerDenis Kasak2009-08-02 05:11:15 +0000
commite6df651c084130baf2717a6b71aaba07502741a2 (patch)
treec0e14a9108515651d807785b3aea885beb3272e2 /engines/draci
parent854c27ffacd40ab842a71dcbbf3fadfe007e1e1a (diff)
downloadscummvm-rg350-e6df651c084130baf2717a6b71aaba07502741a2.tar.gz
scummvm-rg350-e6df651c084130baf2717a6b71aaba07502741a2.tar.bz2
scummvm-rg350-e6df651c084130baf2717a6b71aaba07502741a2.zip
Changed some uint16s to uints (to blend more naturally with the rest of the engine).
svn-id: r42991
Diffstat (limited to 'engines/draci')
-rw-r--r--engines/draci/barchive.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h
index 7d26b65884..6766c3c1fd 100644
--- a/engines/draci/barchive.h
+++ b/engines/draci/barchive.h
@@ -35,8 +35,8 @@ namespace Draci {
*/
struct BAFile {
- uint16 _compLength; //!< Compressed length (the same as _length if the file is uncompressed)
- uint16 _length; //!< Uncompressed length
+ uint _compLength; //!< Compressed length (the same as _length if the file is uncompressed)
+ uint _length; //!< Uncompressed length
uint32 _offset; //!< Offset of file inside archive
byte *_data;
byte _crc;
@@ -62,7 +62,7 @@ public:
void openArchive(const Common::String &path);
void closeArchive(void);
- uint16 size() const { return _fileCount; }
+ uint size() const { return _fileCount; }
/**
* Checks whether there is an archive opened. Should be called before reading
@@ -85,7 +85,7 @@ private:
Common::String _path; //!< Path to file
BAFile *_files; //!< Internal array of files
- uint16 _fileCount; //!< Number of files in archive
+ uint _fileCount; //!< Number of files in archive
bool _isDFW; //!< True if the archive is in DFW format, false otherwise
bool _opened; //!< True if the archive is opened, false otherwise