SCI: Make SegManager::_heap private

svn-id: r50552
This commit is contained in:
Max Horn 2010-07-01 16:05:29 +00:00
parent c822cd67cb
commit b8904a48ed
3 changed files with 19 additions and 18 deletions

View file

@ -553,7 +553,7 @@ static void *derefPtr(SegManager *segMan, reg_t pointer, int entries, bool wantR
if (ret.isRaw != wantRaw) {
warning("Dereferencing pointer %04x:%04x (type %d) which is %s, but expected %s", PRINT_REG(pointer),
segMan->_heap[pointer.segment]->getType(),
segMan->getSegmentType(pointer.segment),
ret.isRaw ? "raw" : "not raw",
wantRaw ? "raw" : "not raw");
}