Turning off HMOVE display doesn't work in the new TIA core, and really was

only a hack in the old core.  We will eventually remove this.
This commit is contained in:
Stephen Anthony 2016-12-02 10:22:59 -03:30
parent 3bb21cdbf3
commit 7bfaf10e80
2 changed files with 2 additions and 8 deletions

View File

@ -723,13 +723,6 @@ bool TIA::toggleCollisions()
return myCollisionsEnabledBits;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// TODO: stub
bool TIA::toggleHMOVEBlank()
{
return false;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// TODO: stub
bool TIA::toggleFixedColors(uInt8 mode)

View File

@ -138,7 +138,8 @@ class TIA : public AbstractTIA
bool toggleCollisions() override;
bool toggleHMOVEBlank() override;
// TODO - remove this completely, as it doesn't work in the new core
bool toggleHMOVEBlank() override { return true; }
bool toggleFixedColors(uInt8 mode = 2) override;