Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-20 | ZVISION: Style modifing by astyle. | Marisa-Chan | |
2013-10-02 | ZVISION: Standardize includes order and format | RichieSams | |
Format is: common/scummsys.h (Only if a .cpp file) header file for this file (Only if a .cpp file) zengine includes other includes, grouped by module | |||
2013-10-02 | ZVISION: Convert all for-loops to use pre-increment instead of post-increment | RichieSams | |
2013-10-02 | ZVISION: Fix curly braces formatting | RichieSams | |
2013-08-04 | ZVISION: Convert _blockSize to an anonymous enum | richiesams | |
2013-08-04 | ZVISION: Optimize integer type usages | richiesams | |
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-04 | ZVISION: Remove extraneous member variable | richiesams | |
2013-08-04 | ZVISION: LZSSReadStream - Decompress directly to the destination buffer ↵ | richiesams | |
instead of an intermediate buffer | |||
2013-08-04 | ZVISION: Add underscore prefix to public static variable names | richiesams | |
2013-08-04 | ZVISION: Fix eos checking in LzssReadStream | richiesams | |
2013-08-04 | ZVISION: Move early break out above the for loop. ↵ | richiesams | |
LzssReadStream::decompressBytes() The other code would go through each of the for loops and do nothing due to EOS. | |||
2013-08-04 | ZVISION: Create class for decompressing and reading LZSS | richiesams | |