diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-20 23:10:31 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-20 23:10:31 +0200 |
commit | 1f7ca9fd3964481318bbaddfb39acc5de8c7d65d (patch) | |
tree | f13ae2ddd03c23d81157b86bf9305de36a5ace60 /Database/internals/database-internal.h | |
parent | eb3bf203a14e81735d6f74467541a6500a3bdf86 (diff) |
Basic makefile structure; making the project at least compilable.
Diffstat (limited to 'Database/internals/database-internal.h')
-rw-r--r-- | Database/internals/database-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Database/internals/database-internal.h b/Database/internals/database-internal.h index f63b40e..5ca6050 100644 --- a/Database/internals/database-internal.h +++ b/Database/internals/database-internal.h @@ -19,9 +19,9 @@ class DatabaseCell : public Base { * it'll create a sub-segment based on the first one. Note also that this doesn't support * the patching system, yet. */ - DatabaseCell(Cpu * cpu, Uint64 cpu_base, absolute_ptr origin, Uint32 size, Uint32 extra_size, DatabaseCell * prev); + DatabaseCell(Cpu * cpu, Uint64 cpu_base, absolute_ptr origin, Uint32 size, Uint32 extra_size, DatabaseCell * prev, Database * parent); ~DatabaseCell(); - Uint32 getID() { return segment->GetID(); } + Uint32 getID() { return segment->getId(); } void LoadMemory(Handle * src) { segment->LoadMemory(src); } Segment * getSegment() { return segment; } Cpu * getCpu() { return cpu; } |