diff options
author | Benjamin Haisch | 2009-01-22 13:04:29 +0000 |
---|---|---|
committer | Benjamin Haisch | 2009-01-22 13:04:29 +0000 |
commit | 5b8105afb3a345cfd66efa795726329f509572c3 (patch) | |
tree | 4ff90316c9dee6be8bda8a0c3f8413ab5d8178a5 /engines/made/graphics.h | |
parent | d5d7175691ea3cde7aa941886e3197763c1398c6 (diff) | |
download | scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.gz scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.tar.bz2 scummvm-rg350-5b8105afb3a345cfd66efa795726329f509572c3.zip |
- Added support for The Manhole EGA version
- Support for 'chunked' picture resources and EGA pictures
- Improved the mouth sync in RtZ (still not perfect, though)
- Removed obsolete TODOs
- Fixed sfPlayMovie to return if the movie playback was aborted or not; this is used by RtZ to determine if it should display the credits screen after the intro movie
svn-id: r35997
Diffstat (limited to 'engines/made/graphics.h')
-rw-r--r-- | engines/made/graphics.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/made/graphics.h b/engines/made/graphics.h index 1a5cf72677..bf5ec288ff 100644 --- a/engines/made/graphics.h +++ b/engines/made/graphics.h @@ -37,6 +37,9 @@ class ValueReader { public: ValueReader(byte *source, bool nibbleMode) : _buffer(source), _nibbleBuf(0), _nibbleMode(nibbleMode), _nibbleSwitch(false) {} byte readPixel(); + uint16 readUint16(); + uint32 readUint32(); + void resetNibbleSwitch(); protected: byte _nibbleBuf; bool _nibbleMode, _nibbleSwitch; |