Fix crash in debugger. Much more work still required here.

This commit is contained in:
Stephen Anthony 2021-04-23 18:00:44 -02:30
parent 7404981105
commit ea6ead0afe
1 changed files with 1 additions and 1 deletions

View File

@ -1321,7 +1321,7 @@ void CartridgeMVC::reset()
const ByteBuffer& CartridgeMVC::getImage(size_t& size) const
{
// not used
size = 0;
size = mySize;
return myImage;
}