Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
Which wipes all the puzzles
|
|
|
|
|
|
|
|
|
|
This ensures that the first auto save of the game will have a
useful location
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Cleanup _buf before returning, even if we don't actually decode
|
|
|
|
boolean
_loopCount refers to the number of times an animation should be played, where 0
corresponds to infinite.
|
|
It's done inside readImageToSurface() and it no longer needs
to be on the heap
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Remove image wrapping logic for the vertical direction since this can never happen now
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
After redoing the math, I now know that the algorithm requires for(x) { for(y) {}}
|
|
|
|
|
|
|
|
I found out that you can call delete/free/delete[] on NULL and the function's defined
behavior is to do nothing.
|
|
Prevents unnecessary algebra
|
|
This is part of a series of commits converting all game assets to RBG 565 from
RBG 555. The argument is that certain backends do not support RGB 555. AVI
videos are already in RGB 565, so we just need to remove the code that switched
the pixelFormat during videos.
|