mirror of https://github.com/stella-emu/stella.git
Remove dead constants, change vsync margin during ystart to match frame.
This commit is contained in:
parent
86e789a6cf
commit
b5feb9fc40
|
@ -31,12 +31,7 @@ enum Metrics: uInt32 {
|
|||
vsync = 3,
|
||||
maxLinesVsync = 50,
|
||||
visibleOverscan = 20,
|
||||
tvModeDetectionTolerance = 20,
|
||||
initialGarbageFrames = TIAConstants::initialGarbageFrames,
|
||||
minStableFrames = 10,
|
||||
maxStabilizationFrames = 20,
|
||||
minDeltaForJitter = 3,
|
||||
framesForStableHeight = 2
|
||||
initialGarbageFrames = TIAConstants::initialGarbageFrames
|
||||
};
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -26,7 +26,7 @@ enum Metrics: uInt32 {
|
|||
frameLinesPAL = 312,
|
||||
vblankNTSC = 37,
|
||||
vblankPAL = 45,
|
||||
waitForVsync = 32,
|
||||
waitForVsync = 50,
|
||||
tvModeDetectionTolerance = 20,
|
||||
maxUnderscan = 10,
|
||||
maxVblankViolations = 2,
|
||||
|
|
|
@ -20,6 +20,10 @@
|
|||
|
||||
#include "AbstractFrameManager.hxx"
|
||||
|
||||
/**
|
||||
* This frame manager detects ystart from the first line with vblank = off.
|
||||
*/
|
||||
|
||||
class YStartDetector: public AbstractFrameManager {
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue