mirror of https://github.com/stella-emu/stella.git
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:
parent
3bb21cdbf3
commit
7bfaf10e80
|
@ -723,13 +723,6 @@ bool TIA::toggleCollisions()
|
|||
return myCollisionsEnabledBits;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
// TODO: stub
|
||||
bool TIA::toggleHMOVEBlank()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
// TODO: stub
|
||||
bool TIA::toggleFixedColors(uInt8 mode)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue