Add two "grace lines" of black when autodetecting ystart.

This commit is contained in:
Christian Speckner 2017-12-04 00:25:03 +01:00
parent 78a3b197f4
commit ed25664c46
1 changed files with 5 additions and 1 deletions

View File

@ -69,6 +69,10 @@
#include "Console.hxx"
namespace {
constexpr uInt8 YSTART_EXTRA = 2;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Console::Console(OSystem& osystem, unique_ptr<Cartridge>& cart,
const Properties& props)
@ -245,7 +249,7 @@ void Console::autodetectYStart()
myTIA->setFrameManager(myFrameManager.get());
myAutodetectedYstart = ystartDetector.detectedYStart();
myAutodetectedYstart = ystartDetector.detectedYStart() - YSTART_EXTRA;
// Don't forget to reset the SC progress bars again
myOSystem.settings().setValue("fastscbios", fastscbios);