Adding a global goto but it still doesn't work with rectangle shadows

This commit is contained in:
Anonymus Raccoon
2020-02-25 02:35:07 +01:00
parent 4437df4666
commit 298f02890e
11 changed files with 91 additions and 14 deletions

View File

@@ -32,4 +32,14 @@ namespace ComSquare::Memory
this->_bankOffset = bankOffset;
return this;
}
bool RectangleShadow::isMirror()
{
return true;
}
std::shared_ptr<IMemory> RectangleShadow::getMirrored()
{
return this->_initial;
}
}