aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/lzss_read_stream.h
AgeCommit message (Collapse)Author
2013-08-04ZVISION: Convert _blockSize to an anonymous enumrichiesams
2013-08-04ZVISION: Optimize integer type usagesrichiesams
The general thought is int is faster than int16 or byte. So if you can afford the space, use it over int16 or byte. Also, only use int32 when you specifically need the 32 bits.
2013-08-04ZVISION: Replace includes with forward declarationsrichiesams
2013-08-04ZVISION: Remove extraneous member variablerichiesams
2013-08-04ZVISION: LZSSReadStream - Decompress directly to the destination buffer ↵richiesams
instead of an intermediate buffer
2013-08-04ZVISION: Add underscore prefix to public static variable namesrichiesams
2013-08-04ZVISION: Fix eos checking in LzssReadStreamrichiesams
2013-08-04ZVISION: Create class for decompressing and reading LZSSrichiesams