index
:
scummvm-rg350
trimui-s
scummvm with trimui support. Forked from https://github.com/salvacam/scummvm-rg350
neonloop
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
engines
/
zvision
/
utility.h
Age
Commit message (
Collapse
)
Author
2013-08-05
ZVISION: Fix index out of range error
richiesams
2013-08-04
ZVISION: Sort using iterators instead of the actual elements
richiesams
Also convert the argument to a reference instead of a pointer
2013-08-04
ZVISION: Fix unsigned/signed mismatch warning
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: Fix unsigned/signed compiler warning
richiesams
2013-08-04
ZVISION: Replace includes with forward declarations
richiesams
2013-08-04
ZVISION: Create utility function to convert .RAW to .WAV
richiesams
2013-08-04
ZVISION: Create utility function to parse fileName from a full/partial path
richiesams
2013-08-04
ZVISION: Create utility method to remove duplicate entries from a Common::Array
richiesams
2013-08-04
ZVISION: Move utility functions to a cpp file with declarations in a header file
richiesams
2013-08-04
ZVISION: Create utility method to dump result action signatures from various ↵
richiesams
.scr files
2013-08-04
ZVISION: Change trimCommentsAndWhiteSpace to use a pointer instead of a ↵
richiesams
reference.
2013-08-04
ZVISION: Use spaces in doxygen comments for alignement instead of tabs
richiesams
2013-08-04
ZVISION: Modify utility and puzzle comments to make them more clear
richiesams
2013-08-04
ZVISION: Fix code formatting to follow the convention
richiesams
2013-08-04
ZVISION: Add documentation to utility functions and add a glorified trim ↵
richiesams
function
2013-08-04
ZVISION: Create utility function that writes File contents to another File
richiesams
scr files are stored and encrypted in archive files. This is an easy way to dump them for debugging purposes.