Fix allocator skipping

This commit is contained in:
momo5502
2025-09-13 09:42:15 +02:00
parent 847765ec71
commit a895de1a16

View File

@@ -315,7 +315,7 @@ class emulator_allocator
void skip_until(const uint64_t offset)
{
this->active_address_ = offset;
this->active_address_ = this->address_ + offset;
}
private: