Revert "Make cycle time optional"

This reverts commit 3048e4dbc6.
Without a CT line vbit2 defaults to 1 cycle which could be too fast on
magazines with very few pages.
This commit is contained in:
G.K.MacGregor
2023-11-30 22:05:14 +00:00
parent 42d19b6e4b
commit 16f6d353ed
5 changed files with 24 additions and 44 deletions

View File

@@ -64,7 +64,6 @@ void LevelOnePage::clearPage()
m_fastTextLink[i] = { 0x0ff, 0x3f7f };
/* m_subPageNumber = 0x0000; */
m_cycleOn = false;
m_cycleValue = 20;
m_cycleType = CTseconds;
m_defaultCharSet = 0;
@@ -342,7 +341,6 @@ bool LevelOnePage::setControlBit(int bitNumber, bool active)
}
/* void LevelOnePage::setSubPageNumber(int newSubPageNumber) { m_subPageNumber = newSubPageNumber; } */
void LevelOnePage::setCycleOn(int cycleOn) { m_cycleOn = cycleOn; };
void LevelOnePage::setCycleValue(int newValue) { m_cycleValue = newValue; };
void LevelOnePage::setCycleType(CycleTypeEnum newType) { m_cycleType = newType; }
void LevelOnePage::setDefaultCharSet(int newDefaultCharSet) { m_defaultCharSet = newDefaultCharSet; }