aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/segment.h
AgeCommit message (Collapse)Author
2011-12-17DREAMWEB: Work around runtime limitationWillem Jan Palenstijn
The WordRef accessor writes back its value too late. Example: in the call printDirect(data.word(kLastxpos), .....) the destructor isn't called until after printDirect returns. This destroys the modifications to lastXPos that printDirect makes.
2011-12-08DREAMWEB: Refactor segment managementMax Horn
All segment code is now in a new header file segment.h. A new class takes care of managing the segments: SegmentManager. The DreamBase class subclasses this -- thus, segments can now be accessed from within it.