Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
The fillRect method is implemented using an experimental, more ScummVM
style, rather than all the different blocks and loops for different
bit depths that the original did
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks to wjp for the suggestion
|
|
|
|
|
|
Fullpipe Common::String + memory leak fixes
|
|
|
|
|
|
|
|
Free the pixel data of each entry in the _dynamicPhases array before
emptying it
|
|
The TODO in the code in question should be reviewed, but the call to
freePixelData() unconditionally deleted the original bitmap, which is
not correct
|
|
|
|
|
|
|
|
|
|
_bitmap is initialized with new, so it needs to be freed with delete,
not free()
|
|
Checking for an empty string is what the original code does, according
to sev, so the check for a string of size 1 was wrong
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
There are several calls to loadFile() with _memfilename, which is why
these two changes are interconnected
|
|
|
|
|
|
|
|
|
|
|