Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
The pixel format for videos is not the same as for the rest of the game.
(Game: RGB 555, Video: RGB 565)
|
|
|
|
TGA's aren't required to have a magic number in the header, but TGZ are.
Therefore it's easier to identify TGZ files.
|
|
|
|
|
|
|
|
LzssReadStream::decompressBytes()
The other code would go through each of the for loops and do nothing due to EOS.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.scr files
|
|
reference.
|
|
ResultAction objects
ResultAction is abstract, therefore, it can't be directly stored in the list
|
|
result_action.h is #included before ZVision is declared, causing not declared compiler errors
|
|
|
|
Create class templates for PlayAnimation, PreloadAnimation, and Attenuate
|
|
|
|
|
|
|
|
|
|
The file only exist to hold the code. The actual tests will be
moved to an appropriate location later.
|
|
|
|
Having the ScriptManager as a member variable forced it to be const,
which prevented any non cont methods to be used. Thus, ScriptManager is
created on the heap and disposed after use.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Instead of storing everything on the heap, only store Strings on the heap.
For Strings, store a char array pointer instead of an actual String object
since String objects are fairly large.
|
|
|
|
|
|
|
|
Implicit conversion, while simple can cause problems and doesn't
show exactly how to get the value.
|
|
|