Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
first game scene
|
|
in-game scene
|
|
|
|
|
|
|
|
This matches the casing of the original engine name.
|
|
within tSage
|
|
|
|
|
|
implementation of Scene 100 (Title Screen)
|
|
|
|
Conflicts:
engines/tsage/ringworld_scenes1.cpp
engines/tsage/ringworld_scenes5.cpp
engines/tsage/tsage.h
|
|
This matches what was done in the Ringworld CD version
|
|
|
|
proper named methods
|
|
assertion: "./engines/tsage/globals.h:84: bool tSage::Globals::getFlag(int) const: Assertion `(flagNum > 0) && (flagNum < 256)' failed.""
|
|
|
|
|
|
serialiser -> serializer
synchronise -> synchronize
|
|
|
|
|
|
|
|
|
|
|
|
This makes the code use Common::List for all cases where synchronization can
not be done with tSage::List::synchronise. Furthermore I renamed the custom
List class to SynchronisedList to stress its purpose.
I also removed clear2, contains and forEach and replaced them with algorithm
usage from Common:: or in the case of "contains" replaced them with a simple
inline function which uses Common::find.
|
|
|
|
|
|
|
|
|
|
|