fix(emu): resolve double free with main mem ptr

This commit is contained in:
2023-09-05 02:00:53 -05:00
parent 09a444ad7b
commit 819eda59f2
3 changed files with 4 additions and 10 deletions

View File

@@ -33,7 +33,6 @@ pub fn init(allocator: Allocator, scheduler: *Scheduler, shared_ctx: SharedConte
}
pub fn deinit(self: *@This(), allocator: Allocator) void {
allocator.destroy(self.main);
allocator.destroy(self.wram);
}