fix:playmov not freeing memory

This commit is contained in:
minjaesong
2023-01-03 00:56:51 +09:00
parent e0d1948bfc
commit 96b49c7623
3 changed files with 67 additions and 29 deletions

View File

@@ -103,7 +103,7 @@ class MMUMenu(parent: VMEmuExecutable, x: Int, y: Int, w: Int, h: Int) : EmuMenu
batch.color = plotColours[ptr % plotColset.size]
batch.fillRect(xoff, yoff + 1, 10, 10)
batch.color = Color.WHITE
FONT.draw(batch, " $size at $ptr", xoff, yoff)
FONT.draw(batch, " ${size * vm.MALLOC_UNIT} at ${ptr * vm.MALLOC_UNIT}", xoff, yoff)
}
}
}