Compare commits

..

2 Commits

Author SHA1 Message Date
Andrea 0afdb70575
Merge 3a2898f82c into 664d7c2d86 2024-04-22 19:26:56 +01:00
Andrea Odetti 3a2898f82c linux munmap: fix comment and simplify memory free.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2024-04-22 19:26:20 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -1643,7 +1643,7 @@ static LPBYTE AllocMemImage(void)
{
return baseAddr;
}
// revert ot ALIGNED_ALLOC
// revert to ALIGNED_ALLOC
munmap(baseAddr, num64KPages * _6502_MEM_LEN);
}
}