aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/utility.h
AgeCommit message (Collapse)Author
2013-08-05ZVISION: Fix index out of range errorrichiesams
2013-08-04ZVISION: Sort using iterators instead of the actual elementsrichiesams
Also convert the argument to a reference instead of a pointer
2013-08-04ZVISION: Fix unsigned/signed mismatch warningrichiesams
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: Fix unsigned/signed compiler warningrichiesams
2013-08-04ZVISION: Replace includes with forward declarationsrichiesams
2013-08-04ZVISION: Create utility function to convert .RAW to .WAVrichiesams
2013-08-04ZVISION: Create utility function to parse fileName from a full/partial pathrichiesams
2013-08-04ZVISION: Create utility method to remove duplicate entries from a Common::Arrayrichiesams
2013-08-04ZVISION: Move utility functions to a cpp file with declarations in a header filerichiesams
2013-08-04ZVISION: Create utility method to dump result action signatures from various ↵richiesams
.scr files
2013-08-04ZVISION: Change trimCommentsAndWhiteSpace to use a pointer instead of a ↵richiesams
reference.
2013-08-04ZVISION: Use spaces in doxygen comments for alignement instead of tabsrichiesams
2013-08-04ZVISION: Modify utility and puzzle comments to make them more clearrichiesams
2013-08-04ZVISION: Fix code formatting to follow the conventionrichiesams
2013-08-04ZVISION: Add documentation to utility functions and add a glorified trim ↵richiesams
function
2013-08-04ZVISION: Create utility function that writes File contents to another Filerichiesams
scr files are stored and encrypted in archive files. This is an easy way to dump them for debugging purposes.