SCI: Rename MemObject -> SegmentObj

svn-id: r44130
This commit is contained in:
Max Horn 2009-09-17 00:45:12 +00:00
parent 1f0e8ef470
commit 10f898c90e
13 changed files with 151 additions and 151 deletions

View file

@ -308,7 +308,7 @@ reg_t kStrCpy(EngineState *s, int, int argc, reg_t *argv) {
if (length >= 0)
strncpy(dest, src, length);
else {
if (s->segMan->_heap[argv[0].segment]->getType() == MEM_OBJ_DYNMEM) {
if (s->segMan->_heap[argv[0].segment]->getType() == SEG_TYPE_DYNMEM) {
reg_t *srcp = (reg_t *) src;
int i;